nixpkgs-review: 2.4.2 -> 2.5.0

This commit is contained in:
Sandro Jäckel 2020-11-26 11:57:44 +01:00
parent fbd0d92078
commit 9e3c598bb7
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

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; {