Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
990 B
Nix
51 lines
990 B
Nix
{
|
|
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
|
|
};
|
|
}
|