Merge pull request #105018 from SuperSandro2000/nixpkgs-review-2.5.0

nixpkgs-review: 2.4.2 -> 2.5.0
This commit is contained in:
StigP 2020-11-26 16:54:00 +01:00 committed by GitHub
commit def8244a38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,24 @@
{ stdenv { stdenv
, python3 , python3
, fetchFromGitHub , fetchFromGitHub
, nix , nixFlakes
, git , git
, lib , lib
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "nixpkgs-review"; pname = "nixpkgs-review";
version = "2.4.2"; version = "2.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Mic92"; owner = "Mic92";
repo = "nixpkgs-review"; repo = "nixpkgs-review";
rev = version; rev = version;
sha256 = "0qc2m2nr7w7sgpg3yzwfxxpqi9acnw46kj2hlalg5ldjffiqdjxa"; sha256 = "1k4i54j5if86qf9dmwm8ybfc4j7ap40y82f03hxfxb7lzq5cqmcv";
}; };
makeWrapperArgs = [ makeWrapperArgs = [
"--prefix" "PATH" ":" (lib.makeBinPath [ nix git ]) "--prefix" "PATH" ":" (lib.makeBinPath [ nixFlakes git ])
]; ];
meta = with stdenv.lib; { meta = with stdenv.lib; {