summary refs log tree commit diff
path: root/pkgs/tools/compression/bsc/default.nix
blob: c1ddb242dad0f0d7a10fb55674880aa451d2f66e (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
29
30
31
32
{ stdenv, fetchurl, openmp ? null }:

stdenv.mkDerivation rec {
  pname = "bsc";
  version = "3.1.0";

  src = fetchurl {
    url = "https://github.com/IlyaGrebnov/libbsc/archive/${version}.tar.gz";
    sha256 = "01yhizaf6qjv1plyrx0fcib264maa5qwvgfvvid9rzlzj9fxjib6";
  };

  enableParallelBuilding = true;

  buildInputs = stdenv.lib.optional stdenv.isDarwin openmp;

  prePatch = ''
    substituteInPlace makefile \
        --replace 'g++' '$(CXX)'
  '';

  preInstall = ''
    makeFlagsArray+=("PREFIX=$out")
  '';

  meta = with stdenv.lib; {
    description = "High performance block-sorting data compression library";
    homepage = http://libbsc.com/;
    # Later commits changed the licence to Apache2 (no release yet, though)
    license = with licenses; [ lgpl3Plus ];
    platforms = platforms.unix;
  };
}