lol

iqueue: init at 0.1.0 (#139064)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Spencer Baugh
Sandro
and committed by
GitHub
94186e43 e570c930

+24
+22
pkgs/development/libraries/iqueue/default.nix
··· 1 + { lib, stdenv, fetchurl, pkg-config, libbsd, microsoft_gsl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "iqueue"; 5 + version = "0.1.0"; 6 + src = fetchurl { 7 + url = "https://github.com/twosigma/iqueue/releases/download/v${version}/iqueue-${version}.tar.gz"; 8 + sha256 = "0049fnr02k15gr21adav33swrwxrpbananilnrp63vp5zs5v9m4x"; 9 + }; 10 + 11 + doCheck = true; 12 + nativeBuildInputs = [ pkg-config ]; 13 + buildInputs = [ libbsd microsoft_gsl ]; 14 + 15 + meta = with lib; { 16 + homepage = "https://github.com/twosigma/iqueue"; 17 + description = "Indexed queue"; 18 + license = licenses.asl20; 19 + platforms = [ "x86_64-linux" ]; 20 + maintainers = [ maintainers.catern ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 1046 1046 1047 1047 hyper = callPackage ../applications/terminal-emulators/hyper { }; 1048 1048 1049 + iqueue = callPackage ../development/libraries/iqueue {}; 1050 + 1049 1051 iterm2 = callPackage ../applications/terminal-emulators/iterm2 {}; 1050 1052 1051 1053 kitty = callPackage ../applications/terminal-emulators/kitty {