miscfiles: update from 1.4.2 to 1.5 and adopt it

This commit is contained in:
Pascal Wittmann 2014-09-01 23:58:43 +02:00
parent e743d1ca85
commit 4cf191a425

View file

@ -1,16 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "miscfiles-1.4.2";
name = "miscfiles-1.5";
src = fetchurl {
url = "mirror://gnu/miscfiles/${name}.tar.gz";
sha256 = "1rh10y63asyrqyp5mlmxy7y4kdp6svk2inws3y7mfx8lsrhcm6dn";
sha256 = "005588vfrwx8ghsdv9p7zczj9lbc9a3r4m5aphcaqv8gif4siaka";
};
meta = {
meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/miscfiles/;
license = stdenv.lib.licenses.gpl2Plus;
license = licenses.gpl2Plus;
description = "Collection of files not of crucial importance for sysadmins";
maintainers = with maintainers; [ pSub ];
};
}