summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite/sqlar.nix
blob: 734d68ca3d492163e8390c3018b2cd1717b465cf (plain) (blame)
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
{ stdenv, fetchurl, fuse, zlib }:

stdenv.mkDerivation rec {
  name = "sqlar-${version}";
  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;
    description = "SQLite Archive utilities";
    platforms = platforms.all;
    maintainers = with maintainers; [ dtzWill ];
  };
}