1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

src: 1.24 -> 1.25 (#61427)

* src: 1.24 -> 1.25
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/src/versions

* src: license is now BSD-2
+ move makeWrapper into nativeBuildInputs
+ add meta.changelog
This commit is contained in:
R. RyanTM 2019-05-13 06:37:27 -07:00 committed by Renaud
parent 42ee7cdf9d
commit 300c205cf9

View file

@ -2,20 +2,21 @@
stdenv.mkDerivation rec {
name = "src-${version}";
version = "1.24";
version = "1.25";
src = fetchurl {
url = "http://www.catb.org/~esr/src/${name}.tar.gz";
sha256 = "0n9j2mywbm8c7mc5b3m7dvn6gff88wwwaygk4y1jivpg1f6s3k3l";
sha256 = "0qd10w8fwbrgaj8sx49q6cfhqq3ylhwn7nl9v6kxi1yjlw2p098p";
};
buildInputs = [ python rcs git makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python rcs git ];
preConfigure = ''
patchShebangs .
'';
makeFlags = [ "prefix=$(out)" ];
makeFlags = [ "prefix=${placeholder "out"}" ];
postInstall = ''
wrapProgram $out/bin/src \
@ -32,8 +33,9 @@ stdenv.mkDerivation rec {
will seem familiar to Subversion/Git/hg users, and no binary blobs
anywhere.
'';
homepage = http://www.catb.org/esr/src/;
license = licenses.bsd3;
homepage = "http://www.catb.org/esr/src/";
changelog = "https://gitlab.com/esr/src/raw/${version}/NEWS";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ calvertvl AndersonTorres ];
};