stoken: fix evaluation (licence), refactor a little
I hope @fuuzetsu doesn't mind the refactoring. BTW, do you know about `autoreconfHook`? It might save the preConfigure and most buildInputs.
This commit is contained in:
parent
e2e21ef320
commit
7307f5c011
@ -23,13 +23,13 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
autoconf automake libtool pkgconfig
|
autoconf automake libtool pkgconfig
|
||||||
libxml2 nettle
|
libxml2 nettle
|
||||||
] ++ (if withGTK3 then [ gtk3 ] else []);
|
] ++ stdenv.lib.optional withGTK3 gtk3;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Software Token for Linux/UNIX";
|
description = "Software Token for Linux/UNIX";
|
||||||
homepage = https://github.com/cernekee/stoken;
|
homepage = https://github.com/cernekee/stoken;
|
||||||
license = stdenv.lib.license.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
maintainers = [ stdenv.lib.maintainers.fuuzetsu ];
|
maintainers = [ maintainers.fuuzetsu ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user