nixpkgs/pkgs/tools/misc/fend/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
2.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, darwin
2022-10-10 12:33:52 +00:00
, pandoc
, installShellFiles
2023-09-20 17:27:35 +00:00
, copyDesktopItems
, makeDesktopItem
2023-09-20 17:33:00 +00:00
, nix-update-script
2023-10-29 07:58:16 +00:00
, testers
, writeText
, runCommand
, fend
}:
2020-11-09 01:03:25 +00:00
rustPlatform.buildRustPackage rec {
pname = "fend";
version = "1.4.0";
2020-11-09 01:03:25 +00:00
src = fetchFromGitHub {
owner = "printfn";
repo = pname;
rev = "v${version}";
sha256 = "sha256-s6b15FhVfEwsHtVt4bhd6LDxl/WW1PXlUrH2XFOTT5E=";
2020-11-09 01:03:25 +00:00
};
cargoHash = "sha256-Ilsv0mo7/4eEdRH3jWZXdF4LSYYdWr6gCvnMMAZn5j0=";
2020-11-09 01:03:25 +00:00
2023-09-20 17:27:35 +00:00
nativeBuildInputs = [ pandoc installShellFiles copyDesktopItems ];
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
2022-10-10 12:33:52 +00:00
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" ]]
'';
2023-09-20 17:27:35 +00:00
postInstall = ''
install -D -m 444 $src/icon/fend-icon-256.png $out/share/icons/hicolor/256x256/apps/fend.png
'';
desktopItems = [
(makeDesktopItem {
name = "fend";
desktopName = "fend";
genericName = "Calculator";
comment = "Arbitrary-precision unit-aware calculator";
icon = "fend";
exec = "fend";
terminal = true;
categories = [ "Utility" "Calculator" "ConsoleOnly" ];
})
];
2023-10-29 07:58:16 +00:00
passthru = {
updateScript = nix-update-script { };
tests = {
version = testers.testVersion { package = fend; };
units = testers.testEqualContents {
assertion = "fend does simple math and unit conversions";
expected = writeText "expected" ''
36 kph
'';
actual = runCommand "actual" { } ''
${lib.getExe fend} '(100 meters) / (10 seconds) to kph' > $out
'';
};
};
};
2023-09-20 17:33:00 +00:00
2020-11-09 01:03:25 +00:00
meta = with lib; {
description = "Arbitrary-precision unit-aware calculator";
homepage = "https://github.com/printfn/fend";
2023-10-30 20:37:04 +00:00
changelog = "https://github.com/printfn/fend/releases/tag/v${version}";
license = licenses.gpl3Plus;
2023-09-20 17:33:41 +00:00
maintainers = with maintainers; [ djanatyn liff ];
2023-09-20 17:27:09 +00:00
mainProgram = "fend";
2020-11-09 01:03:25 +00:00
};
}