3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/nixpkgs-review/default.nix

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

32 lines
673 B
Nix
Raw Normal View History

{ lib
2018-03-28 00:15:38 +01:00
, python3
, fetchFromGitHub
, nix
2018-06-28 22:07:56 +01:00
, git
2018-03-28 00:15:38 +01:00
}:
python3.pkgs.buildPythonApplication rec {
pname = "nixpkgs-review";
2021-12-02 08:45:28 +00:00
version = "2.6.4";
2018-03-28 00:15:38 +01:00
src = fetchFromGitHub {
owner = "Mic92";
repo = "nixpkgs-review";
2018-03-28 00:15:38 +01:00
rev = version;
2021-12-02 08:45:28 +00:00
sha256 = "sha256-6vKMaCTilPXd8K3AuLqtYInVyyFhdun0o9cX1WRMmWo=";
2018-03-28 00:15:38 +01:00
};
2018-08-17 17:49:32 +01:00
makeWrapperArgs = [
"--prefix" "PATH" ":" "${lib.makeBinPath [ nix git ]}"
2018-08-17 17:49:32 +01:00
];
2018-03-28 00:15:38 +01:00
doCheck = false;
meta = with lib; {
2018-03-28 00:15:38 +01:00
description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
homepage = "https://github.com/Mic92/nixpkgs-review";
2018-03-28 00:15:38 +01:00
license = licenses.mit;
maintainers = with maintainers; [ mic92 SuperSandro2000 ];
2018-03-28 00:15:38 +01:00
};
}