mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
openpace: init at 1.1.3 (#386287)
This commit is contained in:
commit
b619ba1d80
2 changed files with 55 additions and 0 deletions
|
@ -25640,6 +25640,11 @@
|
||||||
github = "deviant";
|
github = "deviant";
|
||||||
githubId = 68829907;
|
githubId = 68829907;
|
||||||
};
|
};
|
||||||
|
vaavaav = {
|
||||||
|
name = "Pedro Peixoto";
|
||||||
|
github = "vaavaav";
|
||||||
|
githubId = 56087034;
|
||||||
|
};
|
||||||
vaci = {
|
vaci = {
|
||||||
email = "vaci@vaci.org";
|
email = "vaci@vaci.org";
|
||||||
github = "vaci";
|
github = "vaci";
|
||||||
|
|
50
pkgs/by-name/op/openpace/package.nix
Normal file
50
pkgs/by-name/op/openpace/package.nix
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
autoreconfHook,
|
||||||
|
pkg-config,
|
||||||
|
help2man,
|
||||||
|
gengetopt,
|
||||||
|
openssl,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "openpace";
|
||||||
|
version = "1.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "frankmorgner";
|
||||||
|
repo = "openpace";
|
||||||
|
tag = version;
|
||||||
|
hash = "sha256-KsgCTHvbqxNOcf9HWgXGxagpIjHEcQ5Kryjq71F8XRk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
pkg-config
|
||||||
|
help2man
|
||||||
|
gengetopt
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
autoreconf --verbose --install
|
||||||
|
'';
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
rm $out/bin/example
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Cryptographic library for EAC version 2";
|
||||||
|
homepage = "https://github.com/frankmorgner/openpace";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = with lib.maintainers; [ vaavaav ];
|
||||||
|
broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform; # help2man
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue