diff options
| author | jade <software@lfcode.ca> | 2025-08-09 21:31:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-09 21:31:47 +0200 |
| commit | c5f08b62ed75415439d48152c2a784e36909b1bc (patch) | |
| tree | 119b49dce07214ea7f20635e3147d8eb8a34c86d | |
| parent | [Backport release-25.05] Revert "workflows/eval: disable swap" (#432328) (diff) | |
| parent | libucontext: 1.2 -> 1.3.2 (diff) | |
| download | nixpkgs-c5f08b62ed75415439d48152c2a784e36909b1bc.tar.gz | |
libucontext: 1.2 -> 1.3.2 (#432332)origin/nixpkgs-25.05-darwinorigin/nixos-25.05
| -rw-r--r-- | pkgs/by-name/li/libucontext/package.nix | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/pkgs/by-name/li/libucontext/package.nix b/pkgs/by-name/li/libucontext/package.nix index 375fc20164ac..8bb8fed76700 100644 --- a/pkgs/by-name/li/libucontext/package.nix +++ b/pkgs/by-name/li/libucontext/package.nix @@ -2,26 +2,34 @@ lib, stdenv, fetchFromGitHub, + meson, + ninja, + nix-update-script, }: stdenv.mkDerivation rec { pname = "libucontext"; - version = "1.2"; + version = "1.3.2"; src = fetchFromGitHub { owner = "kaniini"; repo = pname; - rev = "v${version}"; - hash = "sha256-fk3ZKkp3dsyeF6SOWSccr5MkKEwS4AAuosD/h+6wjSw="; + rev = "libucontext-${version}"; + hash = "sha256-aBmGt8O/HTWM9UJMKWz37uDLDkq1JEYTUb1SeGu9j9M="; }; - makeFlags = [ "DESTDIR=$(out)" ]; + 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; - maintainers = [ ]; + teams = [ teams.lix ]; }; } |
