summary refs log tree commit diff
path: root/pkgs/data/misc/miscfiles/default.nix
blob: db4d13b890fdb7e3179702ba09068dc9aab96088 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "miscfiles-1.4.2";

  src = fetchurl {
    url = "mirror://gnu/miscfiles/${name}.tar.gz";
    sha256 = "1rh10y63asyrqyp5mlmxy7y4kdp6svk2inws3y7mfx8lsrhcm6dn";
  };

  meta = {
    homepage = http://www.gnu.org/software/miscfiles/;
    license = stdenv.lib.licenses.gpl2Plus;
    description = "Collection of files not of crucial importance for sysadmins";
  };
}