tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
slock: fix license
Pascal Wittmann
10 years ago
d9837dbd
9ba8e9a9
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
misc
screensavers
slock
default.nix
+4
-4
pkgs/misc/screensavers/slock/default.nix
···
7
7
};
8
8
buildInputs = [ xproto libX11 libXext libXrandr ];
9
9
installFlags = "DESTDIR=\${out} PREFIX=";
10
10
-
meta = {
10
10
+
meta = with stdenv.lib; {
11
11
homepage = http://tools.suckless.org/slock;
12
12
description = "Simple X display locker";
13
13
longDescription = ''
14
14
Simple X display locker. This is the simplest X screen locker.
15
15
'';
16
16
-
license = "bsd";
17
17
-
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
18
18
-
platforms = with stdenv.lib.platforms; linux;
16
16
+
license = licenses.mit;
17
17
+
maintainers = with maintainers; [ astsmtl ];
18
18
+
platforms = platforms.linux;
19
19
};
20
20
}