2021-01-11 08:54:33 +01:00
|
|
|
{lib, stdenv, fetchurl}:
|
2009-10-27 00:03:36 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-03-07 12:37:20 +01:00
|
|
|
pname = "miscfiles";
|
|
|
|
version = "1.5";
|
2009-10-27 00:03:36 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-07 12:37:20 +01:00
|
|
|
url = "mirror://gnu/miscfiles/miscfiles-${version}.tar.gz";
|
2014-09-01 23:58:43 +02:00
|
|
|
sha256 = "005588vfrwx8ghsdv9p7zczj9lbc9a3r4m5aphcaqv8gif4siaka";
|
2009-10-27 00:03:36 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnu.org/software/miscfiles/";
|
2014-09-01 23:58:43 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2009-10-27 00:03:36 +01:00
|
|
|
description = "Collection of files not of crucial importance for sysadmins";
|
2014-09-01 23:58:43 +02:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; unix;
|
2009-10-27 00:03:36 +01:00
|
|
|
};
|
|
|
|
}
|