nixpkgs/pkgs/tools/compression/bsc/default.nix

33 lines
828 B
Nix
Raw Normal View History

2017-09-08 20:20:30 +00:00
{ stdenv, fetchurl, openmp ? null }:
2017-03-11 08:28:05 +00:00
stdenv.mkDerivation rec {
name = "bsc-${version}";
version = "3.1.0";
src = fetchurl {
url = "https://github.com/IlyaGrebnov/libbsc/archive/${version}.tar.gz";
sha256 = "01yhizaf6qjv1plyrx0fcib264maa5qwvgfvvid9rzlzj9fxjib6";
};
enableParallelBuilding = true;
2017-09-08 20:20:30 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin openmp;
prePatch = ''
substituteInPlace makefile \
--replace 'g++' '$(CXX)'
'';
2017-03-11 08:28:05 +00:00
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;
};
}