about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/wxsqlite3
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/wxsqlite3')
-rw-r--r--nixpkgs/pkgs/development/libraries/wxsqlite3/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/wxsqlite3/default.nix b/nixpkgs/pkgs/development/libraries/wxsqlite3/default.nix
new file mode 100644
index 000000000000..d1f6903961b7
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/wxsqlite3/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, wxGTK
+, sqlite
+, Cocoa
+, setfile
+, rez
+, derez
+}:
+
+stdenv.mkDerivation rec {
+  pname = "wxsqlite3";
+  version = "4.6.4";
+
+  src = fetchFromGitHub {
+    owner = "utelle";
+    repo = "wxsqlite3";
+    rev = "v${version}";
+    sha256 = "sha256-fIm8xbNP7pjzvfBn7NgYmUtbVVh2aiaXQVANJQnrWCs=";
+  };
+
+  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 ];
+  };
+}