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
34 lines
714 B
Nix
34 lines
714 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
curl,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "sblim-sfcc";
|
|
version = "2.2.8-unstable-2023-06-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kkaempf";
|
|
repo = "sblim-sfcc";
|
|
rev = "881fccbaf19e26cbef3da1bebe2b42b3a9de1147";
|
|
hash = "sha256-zXQD+IYuMV5vw27FpTpeCfh/mf0wvKzOvc4bplEDJCw=";
|
|
};
|
|
|
|
buildInputs = [ curl ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Small Footprint CIM Client Library";
|
|
homepage = "https://sourceforge.net/projects/sblim/";
|
|
license = licenses.cpl10;
|
|
maintainers = with maintainers; [ deepfire ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|