about summary refs log tree commit diff
path: root/pkgs/development/libraries/lzo/default.nix
blob: 6ce1e786dbee00778636844b4445ad4cfb68f15a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "lzo-2.03";
  
  src = fetchurl {
    url = "${meta.homepage}/download/${name}.tar.gz";
    sha256 = "8b1b0da8f757b9ac318e1c15a0eac8bdb56ca902a2dd25beda06c0f265f22591";
  };
  
  configureFlags = "--enable-shared --disable-static";
  
  meta = {
    description = "A data compresion library suitable for real-time data de-/compression";
    homepage = http://www.oberhumer.com/opensource/lzo;
    license = "GPLv2+";
  };
}