mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
libucontext: init at 1.2
This commit is contained in:
parent
03287dc59d
commit
4f463decc8
23
pkgs/development/libraries/libucontext/default.nix
Normal file
23
pkgs/development/libraries/libucontext/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libucontext";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kaniini";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-fk3ZKkp3dsyeF6SOWSccr5MkKEwS4AAuosD/h+6wjSw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [ "DESTDIR=$(out)" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/kaniini/libucontext";
|
||||||
|
description = "ucontext implementation featuring glibc-compatible ABI";
|
||||||
|
license = licenses.isc;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.yuka ];
|
||||||
|
};
|
||||||
|
}
|
@ -21415,6 +21415,8 @@ with pkgs;
|
|||||||
|
|
||||||
libusbsio = callPackage ../development/libraries/libusbsio { };
|
libusbsio = callPackage ../development/libraries/libusbsio { };
|
||||||
|
|
||||||
|
libucontext = callPackage ../development/libraries/libucontext { };
|
||||||
|
|
||||||
libutempter = callPackage ../development/libraries/libutempter { };
|
libutempter = callPackage ../development/libraries/libutempter { };
|
||||||
|
|
||||||
libuldaq = callPackage ../development/libraries/libuldaq { };
|
libuldaq = callPackage ../development/libraries/libuldaq { };
|
||||||
|
Loading…
Reference in New Issue
Block a user