fend 1.1.5 -> 1.1.6 https://repology.org/project/fend/versions attrpath: fend Checking auto update branch... No auto update branch exists Old version 1.1.5" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , rustPlatform , darwin , pandoc , installShellFiles }: rustPlatform.buildRustPackage rec { pname = "fend"; version = "1.1.6"; src = fetchFromGitHub { owner = "printfn"; repo = pname; rev = "v${version}"; sha256 = "sha256-PO8QKZwtiNMlEFT2P61oe5kj6PWsP5uouOOTRtvpyxI="; }; cargoHash = "sha256-og2YoPUKKMBqEjryzSGqwLIm44WfKkerNtG2N7yl1wE="; nativeBuildInputs = [ pandoc installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; postBuild = '' patchShebangs --build ./documentation/build.sh ./documentation/build.sh ''; preFixup = '' installManPage documentation/fend.1 ''; doInstallCheck = true; installCheckPhase = '' [[ "$($out/bin/fend "1 km to m")" = "1000 m" ]] ''; meta = with lib; { description = "Arbitrary-precision unit-aware calculator"; homepage = "https://github.com/printfn/fend"; license = licenses.mit; maintainers = with maintainers; [ djanatyn ]; }; }