nixpkgs/pkgs/tools/compression/bsc/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

33 lines
818 B
Nix

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