summary refs log tree commit diff
path: root/pkgs/tools/filesystems/dosfstools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-04 15:39:49 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-04 15:39:49 +0000
commitc726012afe1dbd13da7ab15381e3de2867bc8af5 (patch)
tree123888653c98ee60761109c9b3c59f706695b064 /pkgs/tools/filesystems/dosfstools
parent064aae6461971ed76ff4ed5bc8e043840592c04a (diff)
downloadnixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.tar
nixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.tar.gz
nixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.tar.bz2
nixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.tar.lz
nixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.tar.xz
nixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.tar.zst
nixpkgs-c726012afe1dbd13da7ab15381e3de2867bc8af5.zip
* Refactoring: move most filesystem utilities / FUSE filesystems to
  tools/filesystems.  Previously they were all over the place.

svn path=/nixpkgs/trunk/; revision=18809
Diffstat (limited to 'pkgs/tools/filesystems/dosfstools')
-rw-r--r--pkgs/tools/filesystems/dosfstools/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/dosfstools/default.nix b/pkgs/tools/filesystems/dosfstools/default.nix
new file mode 100644
index 00000000000..43691c22714
--- /dev/null
+++ b/pkgs/tools/filesystems/dosfstools/default.nix
@@ -0,0 +1,24 @@
+args : with args; with builderDefs;
+       let localDefs = builderDefs.passthru.function (rec {
+         src = /* put a fetchurl here */
+           fetchurl {
+            url = http://www.daniel-baumann.ch/software/dosfstools/dosfstools-3.0.1.tar.bz2;
+            sha256 = "7fab0de42391277028071d01ff4da83ff9a399408ccf29958cdee62ffe746d45";
+           };
+
+        buildInputs = [];
+        configureFlags = [];
+        makeFlags = " PREFIX=$out ";
+    });
+    in with localDefs;
+stdenv.mkDerivation rec {
+    name = "dosfstools-3.01";
+    builder = writeScript (name + "-builder")
+        (textClosure localDefs 
+            ["doMakeInstall" doForceShare doPropagate]);
+    meta = {
+        description = "Dosfstools - utilities for vfat file system.";
+	homepage = "http://www.daniel-baumann.ch/software/dosfstools/";
+        inherit src;
+    };
+}