tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libucontext: init at 1.2
Yureka
3 years ago
4f463dec
03287dc5
+25
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
libucontext
default.nix
top-level
all-packages.nix
+23
pkgs/development/libraries/libucontext/default.nix
···
1
1
+
{ lib, stdenv, fetchFromGitHub }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "libucontext";
5
5
+
version = "1.2";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "kaniini";
9
9
+
repo = pname;
10
10
+
rev = "v${version}";
11
11
+
hash = "sha256-fk3ZKkp3dsyeF6SOWSccr5MkKEwS4AAuosD/h+6wjSw=";
12
12
+
};
13
13
+
14
14
+
makeFlags = [ "DESTDIR=$(out)" ];
15
15
+
16
16
+
meta = with lib; {
17
17
+
homepage = "https://github.com/kaniini/libucontext";
18
18
+
description = "ucontext implementation featuring glibc-compatible ABI";
19
19
+
license = licenses.isc;
20
20
+
platforms = platforms.linux;
21
21
+
maintainers = [ maintainers.yuka ];
22
22
+
};
23
23
+
}
+2
pkgs/top-level/all-packages.nix
···
21415
21415
21416
21416
libusbsio = callPackage ../development/libraries/libusbsio { };
21417
21417
21418
21418
+
libucontext = callPackage ../development/libraries/libucontext { };
21419
21419
+
21418
21420
libutempter = callPackage ../development/libraries/libutempter { };
21419
21421
21420
21422
libuldaq = callPackage ../development/libraries/libuldaq { };