2014-10-25 01:36:51 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libusb, libyubikey, json_c }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "yubikey-personalization-${version}";
|
2018-04-26 05:40:14 +02:00
|
|
|
version = "1.19.0";
|
2014-10-25 01:36:51 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://developers.yubico.com/yubikey-personalization/Releases/ykpers-${version}.tar.gz";
|
2018-04-26 05:40:14 +02:00
|
|
|
sha256 = "104lc0nnqdr365fa7c4vrq67rxp1dp8idndsh9jlhnj9dnhszj1b";
|
2014-10-25 01:36:51 +02:00
|
|
|
};
|
|
|
|
|
2015-09-22 20:10:11 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libusb libyubikey json_c ];
|
2014-10-25 01:36:51 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-backend=libusb-1.0"
|
|
|
|
];
|
|
|
|
|
2016-05-08 20:52:09 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
2015-03-18 19:16:24 +01:00
|
|
|
postInstall = ''
|
2016-05-08 20:52:09 +02:00
|
|
|
# Don't use 70-yubikey.rules because it depends on ConsoleKit
|
2016-05-09 14:16:58 +02:00
|
|
|
install -D -t $out/lib/udev/rules.d 69-yubikey.rules
|
2015-03-18 19:16:24 +01:00
|
|
|
'';
|
|
|
|
|
2014-10-25 01:36:51 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://developers.yubico.com/yubikey-personalization;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "A library and command line tool to personalize YubiKeys";
|
2014-10-25 01:36:51 +02:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2018-03-11 00:46:41 +01:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-10-25 01:36:51 +02:00
|
|
|
};
|
|
|
|
}
|