Merge pull request #178168 from sven-of-cord/master

spr: init at 1.3.2
main
Sandro 2 years ago committed by GitHub
commit c77e2ff473
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 27
      pkgs/development/tools/spr/default.nix
  3. 4
      pkgs/top-level/all-packages.nix

@ -12447,6 +12447,12 @@
githubId = 1040871;
name = "Mathis Antony";
};
sven-of-cord = {
email = "sven@cord.com";
github = "sven-of-cord";
githubId = 98333944;
name = "Sven Over";
};
svend = {
email = "svend@svends.net";
github = "svend";

@ -0,0 +1,27 @@
{ lib
, rustPlatform
, fetchCrate
, Security
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "spr";
version = "1.3.2";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-6IPNA1Ivj3o+X733a8Kxh1STODS5lLZaK4lh0lxU4bo=";
};
cargoSha256 = "sha256-m/mHOiuaFJtiuyFr2Z3ovk/Q06vxwvUBAiz0rF4R3kU=";
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 ];
};
}

@ -16350,6 +16350,10 @@ with pkgs;
spooles = callPackage ../development/libraries/science/math/spooles {};
spr = callPackage ../development/tools/spr {
inherit (darwin.apple_sdk.frameworks) Security;
};
spruce = callPackage ../development/tools/misc/spruce {};
sqlc = callPackage ../development/tools/database/sqlc { };

Loading…
Cancel
Save