mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
libksi: Add package
This commit is contained in:
parent
24dabdfb98
commit
fdba5c2fd8
2 changed files with 30 additions and 0 deletions
28
pkgs/development/libraries/libksi/default.nix
Normal file
28
pkgs/development/libraries/libksi/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, curl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libksi-2015-07-03";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rgerhards";
|
||||
repo = "libksi";
|
||||
rev = "b1ac0346395b4f52ec42a050bf33ac223f194443";
|
||||
sha256 = "0gg0fl56flwqmsph7j92lgybaa39i715w0nwgkcr58njm0c02wlw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ openssl curl ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-openssl=${openssl}"
|
||||
"--with-cafile=/etc/ssl/certs/ca-certificates.crt"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/rgerhards/libksi";
|
||||
description = "Keyless Signature Infrastructure API library";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
|
@ -7086,6 +7086,8 @@ let
|
|||
|
||||
libksba = callPackage ../development/libraries/libksba { };
|
||||
|
||||
libksi = callPackage ../development/libraries/libksi { };
|
||||
|
||||
libmad = callPackage ../development/libraries/libmad { };
|
||||
|
||||
libmatchbox = callPackage ../development/libraries/libmatchbox { };
|
||||
|
|
Loading…
Reference in a new issue