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