about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2014-07-14 14:45:26 +0200
committerIgor Pashev <pashev.igor@gmail.com>2014-07-14 15:35:27 +0200
commita95e65da60f6f6ebede8276a5e6762a52b6c61d1 (patch)
treea2deeb0c0a6f028b13a5d5dab33dbbd0c568b7c0 /pkgs/development/tools
parent0114a972c7411edb90af2ecc7a240386ca6834a6 (diff)
downloadnixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.tar
nixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.tar.gz
nixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.tar.bz2
nixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.tar.lz
nixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.tar.xz
nixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.tar.zst
nixlib-a95e65da60f6f6ebede8276a5e6762a52b6c61d1.zip
Added quilt-0.63
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/quilt/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/tools/quilt/default.nix b/pkgs/development/tools/quilt/default.nix
new file mode 100644
index 000000000000..7ac4f6d39b7d
--- /dev/null
+++ b/pkgs/development/tools/quilt/default.nix
@@ -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+";
+  };
+}