biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / misc / rink / default.nix
blobc0b33b3cbedb22669ab834821d0a023637bf0d26
1 { lib, stdenv, fetchFromGitHub, rustPlatform, openssl, pkg-config, ncurses
2 , curl, installShellFiles, asciidoctor, libiconv, Security }:
4 rustPlatform.buildRustPackage rec {
5   version = "0.8.0";
6   pname = "rink";
8   src = fetchFromGitHub {
9     owner = "tiffany352";
10     repo = "rink-rs";
11     rev = "v${version}";
12     hash = "sha256-2+ZkyWhEnnO/QgCzWscbMr0u5kwdv2HqPLjtiXDfv/o=";
13   };
15   cargoHash = "sha256-j1pQfMjDNu57otOBTVBQEZIx80p4/beEUQdUkAJhvso=";
17   nativeBuildInputs = [ pkg-config installShellFiles asciidoctor ];
18   buildInputs = [ ncurses ]
19     ++ (if stdenv.hostPlatform.isDarwin then [ curl libiconv Security ] else [ openssl ]);
21   # Some tests fail and/or attempt to use internet servers.
22   doCheck = false;
24   postBuild = ''
25     make man
26   '';
28   postInstall = ''
29     installManPage build/*
30   '';
32   meta = with lib; {
33     description = "Unit-aware calculator";
34     mainProgram = "rink";
35     homepage = "https://rinkcalc.app";
36     license = with licenses; [ mpl20 gpl3Plus ];
37     maintainers = with maintainers; [ sb0 Br1ght0ne ];
38   };