f5fa5fa4d6
* 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
29 lines
781 B
Nix
29 lines
781 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libksi-2015-07-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Guardtime";
|
|
repo = "libksi";
|
|
rev = "b82dd65bd693722db92397cbe0920170e0d2ae1c";
|
|
sha256 = "1sqd31l55kx6knl0sg26ail1k5rgmamq8760p6aj7bpb4jwb8r1n";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ openssl curl ];
|
|
|
|
configureFlags = [
|
|
"--with-openssl=${openssl.dev}"
|
|
"--with-cafile=/etc/ssl/certs/ca-certificates.crt"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/GuardTime/libksi;
|
|
description = "Keyless Signature Infrastructure API library";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|