2009-03-03 05:27:40 -08:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2007-11-11 08:17:21 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-29 06:01:51 -07:00
|
|
|
name = "lzo-2.08";
|
2012-02-02 12:49:42 -08:00
|
|
|
|
2009-03-03 05:27:40 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
2014-08-29 06:01:51 -07:00
|
|
|
sha256 = "0536ad3ksk1r8h2a27d0y4p27lwjarzyndw7sagvxzj6xr6kw6xc";
|
2009-03-03 05:27:40 -08:00
|
|
|
};
|
2009-11-06 14:44:18 -08:00
|
|
|
|
2012-02-02 12:49:42 -08:00
|
|
|
configureFlags = [ "--enable-shared" ];
|
|
|
|
|
|
|
|
doCheck = true;
|
2009-11-06 14:44:18 -08:00
|
|
|
|
2009-03-03 05:27:40 -08:00
|
|
|
meta = {
|
|
|
|
description = "A data compresion library suitable for real-time data de-/compression";
|
2012-02-02 12:49:42 -08:00
|
|
|
longDescription =
|
|
|
|
'' LZO is a data compression library which is suitable for data
|
|
|
|
de-/compression in real-time. This means it favours speed over
|
|
|
|
compression ratio.
|
|
|
|
|
|
|
|
LZO is written in ANSI C. Both the source code and the compressed
|
|
|
|
data format are designed to be portable across platforms.
|
|
|
|
'';
|
|
|
|
|
2009-03-03 05:27:40 -08:00
|
|
|
homepage = http://www.oberhumer.com/opensource/lzo;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-02-02 12:49:42 -08:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 14:44:33 -07:00
|
|
|
maintainers = [ ];
|
2009-03-03 05:27:40 -08:00
|
|
|
};
|
2007-11-11 08:17:21 -08:00
|
|
|
}
|