summary refs log tree commit diff
path: root/pkgs/development/libraries/iqueue/default.nix
blob: 33570c8aea5ad9c556f23ce8b37d13107031f610 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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 ];

  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 ];
  };
}