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

34 lines
825 B
Nix
Raw Normal View History

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