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
45 lines
884 B
Nix
45 lines
884 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libcap,
|
|
libseccomp,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ruri";
|
|
version = "3.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RuriOSS";
|
|
repo = "ruri";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-stM4hSLdSqmYUZ/XBD3Y1GylrrGRISlcy8LN07HREpQ=";
|
|
};
|
|
|
|
patches = [
|
|
./cmake-install.patch
|
|
];
|
|
|
|
buildInputs = [
|
|
libcap
|
|
libseccomp
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
meta = {
|
|
description = "Self-contained Linux container implementation";
|
|
homepage = "https://wiki.crack.moe/ruri";
|
|
downloadPage = "https://github.com/Moe-hacker/ruri";
|
|
changelog = "https://github.com/Moe-hacker/ruri/releases/tag/${finalAttrs.src.tag}";
|
|
mainProgram = "ruri";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.dabao1955 ];
|
|
};
|
|
})
|