nixpkgs/pkgs/tools/archivers/snzip/default.nix
2021-01-16 23:49:59 -08:00

32 lines
758 B
Nix

{ 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;
};
}