Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / sqlite / sqlar.nix
blob9063879b7e379a983468c8fceea860cffc56cfc1
1 { lib, stdenv, fetchurl, fuse, zlib
2 , withFuse ? true }:
4 stdenv.mkDerivation {
5   pname = "sqlar";
6   version = "2018-01-07";
8   src = fetchurl {
9     url = "https://www.sqlite.org/sqlar/tarball/4824e73896/sqlar-src-4824e73896.tar.gz";
10     sha256 = "09pikkbp93gqypn3da9zi0dzc47jyypkwc9vnmfzhmw7kpyv8nm9";
11   };
13   postPatch = ''
14     substituteInPlace Makefile \
15       --replace 'gcc' '${stdenv.cc.targetPrefix}cc'
16   '';
18   buildInputs = [ zlib ]
19     ++ lib.optional withFuse fuse;
21   buildFlags = [ "CFLAGS=-Wno-error" "sqlar" ]
22     ++ lib.optional withFuse "sqlarfs";
24   installPhase = ''
25     install -D -t $out/bin sqlar
26   '' + lib.optionalString withFuse ''
27     install -D -t $out/bin sqlarfs
28   '';
30   meta = with lib; {
31     homepage = "https://sqlite.org/sqlar";
32     description = "SQLite Archive utilities";
33     license = licenses.bsd2;
34     platforms = platforms.all;
35     maintainers = with maintainers; [ dtzWill ];
36   };