mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
35 lines
756 B
Nix
35 lines
756 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, stdenv
|
|
, pkg-config
|
|
, dbus
|
|
, openssl
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "git-ps-rs";
|
|
version = "7.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uptech";
|
|
repo = "git-ps-rs";
|
|
rev = version;
|
|
hash = "sha256-4lk6AHquWKgDk0pBaswbVShZbUDA3wO6cPakhrvrwac=";
|
|
};
|
|
|
|
cargoHash = "sha256-GS/RRPzULUla4XY4tO+eM2NAy2nG0qDxqcSq292ivgU=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl dbus ] ++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for working with a stack of patches";
|
|
mainProgram = "gps";
|
|
homepage = "https://git-ps.sh/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alizter ];
|
|
};
|
|
}
|