nixpkgs/pkgs/development/libraries/libyubikey/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

19 lines
549 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libyubikey-1.13";
src = fetchurl {
url = "https://developers.yubico.com/yubico-c/Releases/${name}.tar.gz";
sha256 = "009l3k2zyn06dbrlja2d4p2vfnzjhlcqxi88v02mlrnb17mx1v84";
};
meta = with stdenv.lib; {
homepage = http://opensource.yubico.com/yubico-c/;
description = "C library for manipulating Yubico YubiKey One-Time Passwords (OTPs)";
license = licenses.bsd2;
maintainers = with maintainers; [ calrama wkennington ];
platforms = platforms.unix;
};
}