37 lines
788 B
Nix
37 lines
788 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, wxGTK
|
|
, sqlite
|
|
, Cocoa
|
|
, setfile
|
|
, rez
|
|
, derez
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wxsqlite3";
|
|
version = "4.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "utelle";
|
|
repo = "wxsqlite3";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-t8y4oq4p7ZMDELAkRVmoNguYRNG8spcW7MHnpdINN8g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ wxGTK sqlite ]
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa setfile rez derez ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://utelle.github.io/wxsqlite3/";
|
|
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
license = with licenses; [ lgpl3Plus gpl3Plus ];
|
|
};
|
|
}
|