dosfstools: temporarily revert upgrade that breaks tests

See #15394

Revert "dosfstools: Enable compat symlinks"
This reverts commit 346482c8d586de299ff8f457d69653917a4d62e2.

Revert "dosfstools: 3.0.28 -> 4.0"
This reverts commit 135fe56183a2c125a777ce59aa5e78f51f3dfec2.
This commit is contained in:
obadz 2016-05-12 09:23:13 +01:00
parent a6ed726a3b
commit 48d760c650

View File

@ -1,21 +1,22 @@
{ stdenv, fetchurl }: { stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "dosfstools-${version}"; name = "dosfstools-${version}";
version = "4.0"; version = "3.0.28";
src = fetchurl { src = fetchFromGitHub {
sha256 = "1bvxbv1w6vhbx0nx7ygp700wq5k2hjv0hm7w0kz1x7amaf4p6dwh"; owner = "dosfstools";
url = "https://github.com/dosfstools/dosfstools/releases/download/v${version}/${name}.tar.xz"; repo = "dosfstools";
rev = "v${version}";
sha256 = "0lqirpxcn8ml0anq8aqmaljfsji9h6mdzz0jrs0yqqfhgg90bkg2";
}; };
configureFlags = [ "--enable-compat-symlinks" ]; makeFlags = "PREFIX=$(out)";
meta = with stdenv.lib; { meta = {
description = "Utilities for creating and checking FAT and VFAT file systems"; description = "Utilities for creating and checking FAT and VFAT file systems";
repositories.git = git://daniel-baumann.ch/git/software/dosfstools.git;
homepage = http://www.daniel-baumann.ch/software/dosfstools/; homepage = http://www.daniel-baumann.ch/software/dosfstools/;
license = licenses.gpl3Plus; platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
}; };
} }