GNU mtools 4.0.15.

svn path=/nixpkgs/trunk/; revision=24356
This commit is contained in:
Ludovic Courtès 2010-10-19 08:09:10 +00:00
parent 5a54c03c82
commit 8846577c78

View file

@ -1,17 +1,18 @@
{ stdenv, fetchurl, texinfo }:
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mtools-4.0.13";
name = "mtools-4.0.15";
src = fetchurl {
url = "mirror://gnu/mtools/${name}.tar.bz2";
sha256 = "1nj7lc2q1g66l3ma8z1c95nglf9himnr6k85b5rry99f9za7npbg";
sha256 = "169qjy3fmmhxiy0jljh84jvjh8mh1p8gglwqgjhq7hbw235fy399";
};
buildInputs = [ texinfo ];
doCheck = true;
meta = {
homepage = http://www.gnu.org/software/mtools/;
description = "Utilities to access MS-DOS disks without mounting them";
description = "GNU mtools, utilities to access MS-DOS disks";
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}