nixpkgs/pkgs/development/tools/spr/default.nix

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

28 lines
640 B
Nix
Raw Normal View History

2022-06-16 21:17:36 +00:00
{ lib
, rustPlatform
, fetchCrate
, Security
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "spr";
2022-06-27 12:10:17 +00:00
version = "1.3.3";
2022-06-16 21:17:36 +00:00
src = fetchCrate {
inherit pname version;
2022-06-27 12:10:17 +00:00
sha256 = "sha256-ozirfRyJWgs5+CWZrXkIHzlNQcUOEAuX/XV+VrUnJC8=";
2022-06-16 21:17:36 +00:00
};
2022-06-27 12:10:17 +00:00
cargoSha256 = "sha256-Khua8g/vk0KTBmca37VhiBSHvfi8tKVhqxDYeJ594Qg=";
2022-06-16 21:17:36 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "Submit pull requests for individual, amendable, rebaseable commits to GitHub";
homepage = "https://github.com/getcord/spr";
license = licenses.mit;
maintainers = with maintainers; [ sven-of-cord ];
};
}