about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/archivers/snzip/default.nix
blob: f3a9400687348e47fda8e648ed7740906f6e5299 (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
{ lib, stdenv, fetchFromGitHub
, autoreconfHook
, pkg-config
, snappy
}:

stdenv.mkDerivation rec {
  pname = "snzip";
  version = "1.0.4";

  src = fetchFromGitHub {
    owner = "kubo";
    repo = "snzip";
    rev = version;
    sha256 = "1v8li1zv9f2g31iyi9y9zx42rjvwkaw221g60pmkbv53y667i325";
  };

  buildInputs = [ snappy ];
  # We don't use a release tarball so we don't have a `./configure` script to
  # run. That's why we generate it.
  nativeBuildInputs = [ autoreconfHook pkg-config ];

  meta = with lib; {
    description = "A compression/decompression tool based on snappy";
    homepage = "https://github.com/kubo/snzip";
    maintainers = with maintainers; [ doronbehar ];
    license = licenses.bsd2;
    platforms = platforms.linux;
  };
}