summary refs log tree commit diff
path: root/pkgs/tools/misc/dosfstools/2.11deb.nix
blob: ce5b9f483588dea41af9bf3b0b1112584b19e2a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
args : with args; with builderDefs {src="";} null;
    let patch = 
        fetchurl {
          url = http://ftp.de.debian.org/debian/pool/main/d/dosfstools/dosfstools_2.11-2.3.diff.gz;
          sha256 = "0bzjhpgg4ih6c76ax8byis9vxgkr2c7bbbshqrkfq8j7ar48n5ld";
        };	
      localDefs = builderDefs (rec {
        src = /* put a fetchurl here */
          fetchurl {
            url = http://ftp.de.debian.org/debian/pool/main/d/dosfstools/dosfstools_2.11.orig.tar.gz;
            sha256 = "1154k0y04npblgac81p4pcmglilk1ldrqll4hvbrwgcb7096vb0f";
          };
	preBuild = FullDepEntry (''
	  gunzip < ${patch} | patch -Np1
	'')["minInit" "doUnpack"];

        buildInputs = [];
        configureFlags = [];
	makeFlags = " PREFIX=$out ";
    }) null; /* null is a terminator for sumArgs */
    in with localDefs;
stdenv.mkDerivation rec {
    name = "dosfstools-"+version;
    builder = writeScript (name + "-builder")
        (textClosure localDefs 
            [preBuild "doMakeInstall" doForceShare doPropagate]);
    meta = {
        description = "
        Dosfstools - utilities for vfat file system.
";
	homepage = "http://sixpak.org/dosfstools/dosfstools-2.8vb2.tar.gz";
    };
    inherit src;
}