lol
1{ stdenv, fetchurl, pkgs}:
2
3with pkgs;
4
5stdenv.mkDerivation rec {
6 name = "quilt-0.63";
7
8 src = fetchurl {
9 url = "mirror://savannah/quilt/${name}.tar.gz";
10 sha256 = "2846788221aa8844c54f10239c7cbc5e88031859162bcc285449446c3cfffe52";
11 };
12
13 buildInputs = [ makeWrapper perl bash diffutils patch findutils diffstat ];
14
15 postInstall = ''
16 wrapProgram $out/bin/quilt --prefix PATH : \
17 ${perl}/bin:${bash}/bin:${diffstat}/bin:${diffutils}/bin:${findutils}/bin:${patch}/bin
18 '';
19
20 meta = {
21 homepage = http://savannah.nongnu.org/projects/quilt;
22 description = "Easily manage large numbers of patches";
23
24 longDescription = ''
25 Quilt allows you to easily manage large numbers of
26 patches by keeping track of the changes each patch
27 makes. Patches can be applied, un-applied, refreshed,
28 and more.
29 '';
30
31 license = stdenv.lib.licenses.gpl2Plus;
32 platforms = stdenv.lib.platforms.all;
33 };
34}