fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{lib, stdenv, fetchurl}:
2
3stdenv.mkDerivation rec {
4 pname = "miscfiles";
5 version = "1.5";
6
7 src = fetchurl {
8 url = "mirror://gnu/miscfiles/miscfiles-${version}.tar.gz";
9 sha256 = "005588vfrwx8ghsdv9p7zczj9lbc9a3r4m5aphcaqv8gif4siaka";
10 };
11
12 meta = with lib; {
13 homepage = "https://www.gnu.org/software/miscfiles/";
14 license = licenses.gpl2Plus;
15 description = "Collection of files not of crucial importance for sysadmins";
16 maintainers = with maintainers; [ pSub ];
17 platforms = with platforms; unix;
18 };
19}