2017-09-06 12:22:24 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2009-03-22 06:03:37 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-13 13:42:17 -07:00
|
|
|
name = "ucl-1.03";
|
2009-03-22 06:03:37 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = https://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz;
|
2009-03-22 06:03:37 -07:00
|
|
|
sha256 = "b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348";
|
|
|
|
};
|
|
|
|
|
2017-08-15 00:15:48 -07:00
|
|
|
# needed to successfully compile with gcc 6
|
2017-09-06 12:22:24 -07:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isGNU "-std=c90";
|
2017-08-15 00:15:48 -07:00
|
|
|
|
2009-03-22 06:03:37 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.oberhumer.com/opensource/ucl/;
|
|
|
|
description = "Portable lossless data compression library";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-03-22 06:03:37 -07:00
|
|
|
};
|
|
|
|
}
|