iqueue: init at 0.1.0 (#139064)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
e570c93031
commit
94186e430b
22
pkgs/development/libraries/iqueue/default.nix
Normal file
22
pkgs/development/libraries/iqueue/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ lib, stdenv, fetchurl, pkg-config, libbsd, microsoft_gsl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "iqueue";
|
||||||
|
version = "0.1.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/twosigma/iqueue/releases/download/v${version}/iqueue-${version}.tar.gz";
|
||||||
|
sha256 = "0049fnr02k15gr21adav33swrwxrpbananilnrp63vp5zs5v9m4x";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ libbsd microsoft_gsl ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/twosigma/iqueue";
|
||||||
|
description = "Indexed queue";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = [ maintainers.catern ];
|
||||||
|
};
|
||||||
|
}
|
@ -1046,6 +1046,8 @@ with pkgs;
|
|||||||
|
|
||||||
hyper = callPackage ../applications/terminal-emulators/hyper { };
|
hyper = callPackage ../applications/terminal-emulators/hyper { };
|
||||||
|
|
||||||
|
iqueue = callPackage ../development/libraries/iqueue {};
|
||||||
|
|
||||||
iterm2 = callPackage ../applications/terminal-emulators/iterm2 {};
|
iterm2 = callPackage ../applications/terminal-emulators/iterm2 {};
|
||||||
|
|
||||||
kitty = callPackage ../applications/terminal-emulators/kitty {
|
kitty = callPackage ../applications/terminal-emulators/kitty {
|
||||||
|
Loading…
Reference in New Issue
Block a user