nixpkgs/pkgs/development/libraries/sqlite/sqlar.nix

28 lines
658 B
Nix
Raw Normal View History

2018-05-17 05:42:14 +03:00
{ stdenv, fetchurl, fuse, zlib }:
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
pname = "sqlar";
2018-05-17 05:42:14 +03:00
version = "2018-01-07";
src = fetchurl {
url = "https://www.sqlite.org/sqlar/tarball/4824e73896/sqlar-src-4824e73896.tar.gz";
sha256 = "09pikkbp93gqypn3da9zi0dzc47jyypkwc9vnmfzhmw7kpyv8nm9";
};
buildInputs = [ fuse zlib ];
buildFlags = [ "sqlar" "sqlarfs" ];
installPhase = ''
install -D -t $out/bin sqlar sqlarfs
'';
meta = with stdenv.lib; {
homepage = "https://sqlite.org/sqlar";
2018-05-17 05:42:14 +03:00
description = "SQLite Archive utilities";
2018-08-11 15:32:05 +03:00
license = licenses.bsd2;
2018-05-17 05:42:14 +03:00
platforms = platforms.all;
maintainers = with maintainers; [ dtzWill ];
};
}