3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/wxsqlite3/default.nix

37 lines
788 B
Nix
Raw Normal View History

2021-08-09 10:32:44 +01:00
{ lib
, stdenv
2020-05-05 18:41:38 +01:00
, fetchFromGitHub
, autoreconfHook
, wxGTK
, sqlite
2021-08-09 10:32:44 +01:00
, Cocoa
, setfile
, rez
, derez
2020-05-05 18:41:38 +01:00
}:
2016-07-05 08:12:35 +01:00
stdenv.mkDerivation rec {
pname = "wxsqlite3";
2021-08-14 10:40:42 +01:00
version = "4.7.3";
2016-07-05 08:12:35 +01:00
src = fetchFromGitHub {
owner = "utelle";
repo = "wxsqlite3";
rev = "v${version}";
2021-08-14 10:40:42 +01:00
sha256 = "sha256-t8y4oq4p7ZMDELAkRVmoNguYRNG8spcW7MHnpdINN8g=";
2016-07-05 08:12:35 +01:00
};
2020-05-05 18:41:38 +01:00
nativeBuildInputs = [ autoreconfHook ];
2017-04-08 04:35:21 +01:00
buildInputs = [ wxGTK sqlite ]
2021-08-09 10:32:44 +01:00
++ lib.optionals stdenv.isDarwin [ Cocoa setfile rez derez ];
2016-07-05 08:12:35 +01:00
meta = with lib; {
homepage = "https://utelle.github.io/wxsqlite3/";
2016-07-05 08:12:35 +01:00
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
platforms = platforms.unix;
maintainers = with maintainers; [ vrthra ];
2021-08-09 10:32:44 +01:00
license = with licenses; [ lgpl3Plus gpl3Plus ];
2016-07-05 08:12:35 +01:00
};
}