summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/sn/snzip/package.nix
blob: 590a965ace6b9e6ad924281103162037edb5b40c (plain)
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
35
36
37
38
39
{
  lib,
  stdenv,
  fetchFromGitHub,
  autoreconfHook,
  pkg-config,
  snappy,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "snzip";
  version = "1.0.5";

  src = fetchFromGitHub {
    owner = "kubo";
    repo = "snzip";
    rev = "v${finalAttrs.version}";
    hash = "sha256-trxCGVNw2MugE7kmth62Qrp7JZcHeP1gdTZk32c3hFg=";
  };

  # 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
  ];

  buildInputs = [
    snappy
  ];

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