biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / git-ps-rs / default.nix
blob6d4a5be75418e2007cd5cf4f932db8b7989decf7
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , stdenv
5 , pkg-config
6 , dbus
7 , openssl
8 , Security
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "git-ps-rs";
13   version = "7.0.0";
15   src = fetchFromGitHub {
16     owner = "uptech";
17     repo = "git-ps-rs";
18     rev = version;
19     hash = "sha256-HPHFjYfug642NXeNmv50UzsdOAlDR9F/MtgYnzwiZP8=";
20   };
22   cargoHash = "sha256-mvRcOwCe5NQ+cJ9brnbZ6HLtLn+fnjYzSBQwA3Qn9PU=";
24   nativeBuildInputs = [ pkg-config ];
26   buildInputs = [ openssl dbus ] ++ lib.optionals stdenv.isDarwin [ Security ];
28   meta = with lib; {
29     description = "Tool for working with a stack of patches";
30     mainProgram = "gps";
31     homepage = "https://git-ps.sh/";
32     license = licenses.mit;
33     maintainers = with maintainers; [ alizter ];
34   };