Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
686 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "libucontext";
version = "1.3.2";
src = fetchFromGitHub {
owner = "kaniini";
repo = "libucontext";
rev = "libucontext-${version}";
hash = "sha256-aBmGt8O/HTWM9UJMKWz37uDLDkq1JEYTUb1SeGu9j9M=";
};
nativeBuildInputs = [
meson
ninja
];
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/kaniini/libucontext";
description = "ucontext implementation featuring glibc-compatible ABI";
license = licenses.isc;
platforms = platforms.linux;
teams = [ teams.lix ];
};
}