nixpkgs/pkgs/development/libraries/snappy/default.nix

31 lines
788 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig }:
2013-02-18 22:12:11 +01:00
stdenv.mkDerivation rec {
2015-09-18 03:28:53 +02:00
name = "snappy-${version}";
version = "1.1.4";
2013-02-18 22:12:11 +01:00
src = fetchurl {
url = "http://github.com/google/snappy/releases/download/${version}/"
+ "snappy-${version}.tar.gz";
sha256 = "0mq0nz8gbi1sp3y6xcg0a6wbvnd6gc717f3vh2xrjmfj5w9gwjqk";
2013-02-18 22:12:11 +01:00
};
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [ pkgconfig ];
2013-02-18 22:12:11 +01:00
2014-09-14 04:13:43 +02:00
# -DNDEBUG for speed
configureFlags = [ "CXXFLAGS=-DNDEBUG" ];
2015-07-24 00:47:16 +02:00
# SIGILL on darwin
doCheck = !stdenv.isDarwin;
2013-02-18 22:12:11 +01:00
2014-09-14 04:13:43 +02:00
meta = with stdenv.lib; {
2013-02-19 11:23:28 +01:00
homepage = http://code.google.com/p/snappy/;
2014-09-14 04:13:43 +02:00
license = licenses.bsd3;
2013-02-18 22:12:11 +01:00
description = "Compression/decompression library for very high speeds";
2014-09-14 04:13:43 +02:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
2013-02-18 22:12:11 +01:00
};
}