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
58 lines
677 B
Nix
58 lines
677 B
Nix
{
|
|
boost,
|
|
catch2_3,
|
|
cmake,
|
|
curl,
|
|
fetchFromGitHub,
|
|
git,
|
|
libxml2,
|
|
openssl,
|
|
php,
|
|
ruby,
|
|
sqlite,
|
|
stdenv,
|
|
zlib,
|
|
|
|
pname,
|
|
version,
|
|
meta,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
inherit
|
|
pname
|
|
version
|
|
meta
|
|
;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cfillion";
|
|
repo = "reapack";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-RhXAjTNAJegeCJaYkvwJedZrXRA92dQ0EeHJr9ngeCg=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
git
|
|
php
|
|
ruby
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
catch2_3
|
|
curl
|
|
libxml2
|
|
openssl
|
|
sqlite
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [ "-Wno-dev" ];
|
|
|
|
})
|