snzip: init at 1.0.4
This commit is contained in:
parent
a2638b611f
commit
a7077637f9
31
pkgs/tools/archivers/snzip/default.nix
Normal file
31
pkgs/tools/archivers/snzip/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, pkgconfig
|
||||||
|
, 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 pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -10169,6 +10169,8 @@ in
|
|||||||
|
|
||||||
snore = callPackage ../tools/misc/snore { };
|
snore = callPackage ../tools/misc/snore { };
|
||||||
|
|
||||||
|
snzip = callPackage ../tools/archivers/snzip { };
|
||||||
|
|
||||||
snowman = qt5.callPackage ../development/tools/analysis/snowman { };
|
snowman = qt5.callPackage ../development/tools/analysis/snowman { };
|
||||||
|
|
||||||
sparse = callPackage ../development/tools/analysis/sparse { };
|
sparse = callPackage ../development/tools/analysis/sparse { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user