1 { lib, stdenv, fetchFromGitHub
7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
15 sha256 = "1v8li1zv9f2g31iyi9y9zx42rjvwkaw221g60pmkbv53y667i325";
18 buildInputs = [ snappy ];
19 # We don't use a release tarball so we don't have a `./configure` script to
20 # run. That's why we generate it.
21 nativeBuildInputs = [ autoreconfHook pkg-config ];
24 description = "A compression/decompression tool based on snappy";
25 homepage = "https://github.com/kubo/snzip";
26 maintainers = with maintainers; [ doronbehar ];
27 license = licenses.bsd2;
28 platforms = platforms.linux;