about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/sqlite/sqlar.nix
blob: 9063879b7e379a983468c8fceea860cffc56cfc1 (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
27
28
29
30
31
32
33
34
35
36
37
{ lib, stdenv, fetchurl, fuse, zlib
, withFuse ? true }:

stdenv.mkDerivation {
  pname = "sqlar";
  version = "2018-01-07";

  src = fetchurl {
    url = "https://www.sqlite.org/sqlar/tarball/4824e73896/sqlar-src-4824e73896.tar.gz";
    sha256 = "09pikkbp93gqypn3da9zi0dzc47jyypkwc9vnmfzhmw7kpyv8nm9";
  };

  postPatch = ''
    substituteInPlace Makefile \
      --replace 'gcc' '${stdenv.cc.targetPrefix}cc'
  '';

  buildInputs = [ zlib ]
    ++ lib.optional withFuse fuse;

  buildFlags = [ "CFLAGS=-Wno-error" "sqlar" ]
    ++ lib.optional withFuse "sqlarfs";

  installPhase = ''
    install -D -t $out/bin sqlar
  '' + lib.optionalString withFuse ''
    install -D -t $out/bin sqlarfs
  '';

  meta = with lib; {
    homepage = "https://sqlite.org/sqlar";
    description = "SQLite Archive utilities";
    license = licenses.bsd2;
    platforms = platforms.all;
    maintainers = with maintainers; [ dtzWill ];
  };
}