nixpkgs/pkgs/tools/security/stoken/default.nix
Mateusz Kowalczyk 1451a52a38 Remove myself (fuuzetsu) from maintainer lists
I haven't been doing any maintenance for a long time now and not only
do I get notified, it also creates a fake impression that all these
packages had at least one maintainer when in practice they had none.
2019-12-05 16:29:48 +09:00

37 lines
853 B
Nix

{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
, libxml2, nettle
, withGTK3 ? true, gtk3 }:
stdenv.mkDerivation rec {
pname = "stoken";
version = "0.92";
src = fetchFromGitHub {
owner = "cernekee";
repo = pname;
rev = "v${version}";
sha256 = "0q7cv8vy5b2cslm57maqb6jsm7s4rwacjyv6gplwp26yhm38hw7y";
};
preConfigure = ''
aclocal
libtoolize --automake --copy
autoheader
automake --add-missing --copy
autoconf
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
autoconf automake libtool
libxml2 nettle
] ++ stdenv.lib.optional withGTK3 gtk3;
meta = with stdenv.lib; {
description = "Software Token for Linux/UNIX";
homepage = https://github.com/cernekee/stoken;
license = licenses.lgpl21Plus;
maintainers = [ ];
platforms = platforms.all;
};
}