about summary refs log tree commit diff
path: root/pkgs/data/misc/miscfiles/default.nix
blob: e216f4b0278d558917eaae9a68dc101758a95755 (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 = "GPLv2+";
    description = "Collection of files not of crucial importance for sysadmins";
  };
}