forked from mirrors/nixpkgs
last: 1422 -> 1445
This commit is contained in:
parent
03b3dff5b6
commit
e14e8f5f31
|
@ -1,20 +1,35 @@
|
|||
{ lib, stdenv, fetchFromGitLab, unzip, zlib, python3, parallel }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, unzip
|
||||
, zlib
|
||||
, python3
|
||||
, parallel
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "last";
|
||||
version = "1422";
|
||||
version = "1445";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "mcfrith";
|
||||
repo = "last";
|
||||
rev = version;
|
||||
sha256 = "sha256-3OhttOd6qgO6d+sbVkZj8i/K6bJTvlMyfa3E4mIpt24=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-E3D9KmCIVcwXblwJ0wePk0wKoXwKA2UsSGqfMmRsw2A=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
buildInputs = [ zlib python3 ];
|
||||
nativeBuildInputs = [
|
||||
unzip
|
||||
];
|
||||
|
||||
makeFlags = [ "prefix=${placeholder "out"}" ];
|
||||
buildInputs = [
|
||||
zlib
|
||||
python3
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"prefix=${placeholder "out"}"
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
for f in $out/bin/parallel-* ; do
|
||||
|
|
Loading…
Reference in a new issue