libucontext: init at 1.2

Yureka 4f463dec 03287dc5

+25
+23
pkgs/development/libraries/libucontext/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libucontext"; 5 + version = "1.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kaniini"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + hash = "sha256-fk3ZKkp3dsyeF6SOWSccr5MkKEwS4AAuosD/h+6wjSw="; 12 + }; 13 + 14 + makeFlags = [ "DESTDIR=$(out)" ]; 15 + 16 + meta = with lib; { 17 + homepage = "https://github.com/kaniini/libucontext"; 18 + description = "ucontext implementation featuring glibc-compatible ABI"; 19 + license = licenses.isc; 20 + platforms = platforms.linux; 21 + maintainers = [ maintainers.yuka ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 21415 21415 21416 21416 libusbsio = callPackage ../development/libraries/libusbsio { }; 21417 21417 21418 + libucontext = callPackage ../development/libraries/libucontext { }; 21419 + 21418 21420 libutempter = callPackage ../development/libraries/libutempter { }; 21419 21421 21420 21422 libuldaq = callPackage ../development/libraries/libuldaq { };