Commit 4f463dec authored by Yureka's avatar Yureka
Browse files

libucontext: init at 1.2

parent 03287dc5
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -21415,6 +21415,8 @@ with pkgs;
  libusbsio = callPackage ../development/libraries/libusbsio { };
  libucontext = callPackage ../development/libraries/libucontext { };
  libutempter = callPackage ../development/libraries/libutempter { };
  libuldaq = callPackage ../development/libraries/libuldaq { };