summary refs log tree commit diff
path: root/pkgs/development/libraries/snappy/default.nix
blob: 5ce636e6f0cad66208d54c157a196a7fb4c3f366 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  name = "snappy-${version}";
  version = "1.1.7";

  src = fetchFromGitHub {
    owner = "google";
    repo = "snappy";
    rev = "${version}";
    sha256 = "1x7r8sjmdqlqjz0xfiwdyrqpgaj5yrvrgb28ivgpvnxgar5qv6m2";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ cmake ];

  # -DNDEBUG for speed
  configureFlags = [ "CXXFLAGS=-DNDEBUG" ];

  # SIGILL on darwin
  doCheck = !stdenv.isDarwin;
  checkPhase = ''
    (cd .. && ./build/snappy_unittest)
  '';

  meta = with stdenv.lib; {
    homepage = https://google.github.io/snappy/;
    license = licenses.bsd3;
    description = "Compression/decompression library for very high speeds";
    platforms = platforms.unix;
    maintainers = with maintainers; [ wkennington ];
  };
}