1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

Merge branch 'master' of git://github.com/ip1981/nixpkgs

Added quilt-0.63
This commit is contained in:
Shea Levy 2014-07-14 10:26:39 -04:00
commit b57bc220cc
3 changed files with 36 additions and 1 deletions

View file

@ -127,7 +127,7 @@ rec {
ftp://mirror.csclub.uwaterloo.ca/nongnu/
ftp://mirror.publicns.net/pub/nongnu/
ftp://savannah.c3sl.ufpr.br/
http://download.savannah.gnu.org/
http://download.savannah.gnu.org/releases/
http://ftp.cc.uoc.gr/mirrors/nongnu.org/
http://ftp.twaren.net/Unix/NonGNU/
http://mirror.csclub.uwaterloo.ca/nongnu/

View file

@ -0,0 +1,33 @@
{ stdenv, fetchurl, pkgs}:
with pkgs;
stdenv.mkDerivation rec {
name = "quilt-0.63";
src = fetchurl {
url = "mirror://savannah/quilt/${name}.tar.gz";
sha256 = "2846788221aa8844c54f10239c7cbc5e88031859162bcc285449446c3cfffe52";
};
buildInputs = [ makeWrapper perl bash diffutils patch findutils diffstat ];
postInstall = ''
wrapProgram $out/bin/quilt --prefix PATH : \
${perl}/bin:${bash}/bin:${diffstat}/bin:${diffutils}/bin:${findutils}/bin:${patch}/bin
'';
meta = {
homepage = http://savannah.nongnu.org/projects/quilt;
description = "Easily manage large numbers of patches";
longDescription = ''
Quilt allows you to easily manage large numbers of
patches by keeping track of the changes each patch
makes. Patches can be applied, un-applied, refreshed,
and more.
'';
license = "GPLv2+";
};
}

View file

@ -1909,6 +1909,8 @@ let
qshowdiff = callPackage ../tools/text/qshowdiff { };
quilt = callPackage ../development/tools/quilt { };
radvd = callPackage ../tools/networking/radvd { };
ranger = callPackage ../applications/misc/ranger { };