nixpkgs/pkgs/development/libraries/iqueue/default.nix
2023-05-26 13:43:45 +03:00

29 lines
792 B
Nix

{ 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 ];
env.NIX_CFLAGS_COMPILE = toString [
# Needed with GCC 12
"-Wno-error=array-parameter"
"-Wno-error=misleading-indentation"
];
meta = with lib; {
homepage = "https://github.com/twosigma/iqueue";
description = "Indexed queue";
license = licenses.asl20;
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.catern ];
};
}