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

34 lines
825 B
Nix
Raw Normal View History

2021-07-21 11:36:12 +00:00
{ lib, stdenv, fetchFromGitHub, openmp }:
2017-03-11 08:28:05 +00:00
stdenv.mkDerivation rec {
pname = "bsc";
2017-03-11 08:28:05 +00:00
version = "3.1.0";
2021-07-21 11:36:12 +00:00
src = fetchFromGitHub {
owner = "IlyaGrebnov";
repo = "libbsc";
rev = version;
sha256 = "0c0jmirh9y23kyi1jnrm13sa3xsjn54jazfr84ag45pai279fciz";
2017-03-11 08:28:05 +00:00
};
enableParallelBuilding = true;
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isDarwin openmp;
2017-09-08 20:20:30 +00:00
2021-07-21 11:36:12 +00:00
postPatch = ''
2017-09-08 20:20:30 +00:00
substituteInPlace makefile \
--replace 'g++' '$(CXX)'
'';
2021-07-21 11:36:12 +00:00
makeFlags = [ "PREFIX=$(out)" ];
2017-03-11 08:28:05 +00:00
meta = with lib; {
2017-03-11 08:28:05 +00:00
description = "High performance block-sorting data compression library";
homepage = "http://libbsc.com/";
2021-07-21 11:36:12 +00:00
maintainers = with maintainers; [ ];
2017-03-11 08:28:05 +00:00
# Later commits changed the licence to Apache2 (no release yet, though)
license = with licenses; [ lgpl3Plus ];
platforms = platforms.unix;
};
}