nixpkgs/pkgs/tools/security/stoken/default.nix

37 lines
848 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config
2015-08-13 12:03:08 +00:00
, libxml2, nettle
, withGTK3 ? true, gtk3 }:
stdenv.mkDerivation rec {
pname = "stoken";
version = "0.92";
2015-08-13 12:03:08 +00:00
src = fetchFromGitHub {
owner = "cernekee";
repo = pname;
2018-05-28 12:59:57 +00:00
rev = "v${version}";
sha256 = "0q7cv8vy5b2cslm57maqb6jsm7s4rwacjyv6gplwp26yhm38hw7y";
2015-08-13 12:03:08 +00:00
};
preConfigure = ''
aclocal
libtoolize --automake --copy
autoheader
automake --add-missing --copy
autoconf
'';
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2015-08-13 12:03:08 +00:00
buildInputs = [
autoconf automake libtool
2015-08-13 12:03:08 +00:00
libxml2 nettle
2021-01-15 09:19:50 +00:00
] ++ lib.optional withGTK3 gtk3;
2015-08-13 12:03:08 +00:00
meta = with lib; {
2015-08-13 12:03:08 +00:00
description = "Software Token for Linux/UNIX";
homepage = "https://github.com/cernekee/stoken";
license = licenses.lgpl21Plus;
maintainers = [ ];
platforms = platforms.all;
2015-08-13 12:03:08 +00:00
};
}