slock: fix license

This commit is contained in:
Pascal Wittmann 2016-02-14 14:43:45 +01:00
parent 9ba8e9a9da
commit d9837dbd89

View File

@ -7,14 +7,14 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ xproto libX11 libXext libXrandr ]; buildInputs = [ xproto libX11 libXext libXrandr ];
installFlags = "DESTDIR=\${out} PREFIX="; installFlags = "DESTDIR=\${out} PREFIX=";
meta = { meta = with stdenv.lib; {
homepage = http://tools.suckless.org/slock; homepage = http://tools.suckless.org/slock;
description = "Simple X display locker"; description = "Simple X display locker";
longDescription = '' longDescription = ''
Simple X display locker. This is the simplest X screen locker. Simple X display locker. This is the simplest X screen locker.
''; '';
license = "bsd"; license = licenses.mit;
maintainers = with stdenv.lib.maintainers; [ astsmtl ]; maintainers = with maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux; platforms = platforms.linux;
}; };
} }