rosenpass-tools 0.2.1 -> 0.2.2 https://github.com/rosenpass/rosenpass/releases attrpath: rosenpass-tools Checking auto update branch... No auto update branch exists Old version 0.2.1" not present in master derivation file with contents: { lib , stdenv , makeWrapper , installShellFiles , coreutils , findutils , gawk , rosenpass , wireguard-tools }: stdenv.mkDerivation { inherit (rosenpass) version src; pname = "rosenpass-tools"; nativeBuildInputs = [ makeWrapper installShellFiles ]; postInstall = '' install -D $src/rp $out/bin/rp installManPage $src/doc/rp.1 wrapProgram $out/bin/rp \ --prefix PATH : ${lib.makeBinPath [ coreutils findutils gawk rosenpass wireguard-tools ]} ''; meta = rosenpass.meta // { description = "The Rosenpass tool `rp`, which is a script that wraps the `rosenpass` binary"; mainProgram = "rp"; }; }