nixpkgs/pkgs/development/libraries/wxsqlite3/default.nix

33 lines
822 B
Nix
Raw Normal View History

2020-05-05 18:41:38 +01:00
{ stdenv
, fetchFromGitHub
, autoreconfHook
, wxGTK
, sqlite
, darwin
}:
2016-07-05 08:12:35 +01:00
stdenv.mkDerivation rec {
pname = "wxsqlite3";
2020-11-12 11:07:52 +00:00
version = "4.6.1";
2016-07-05 08:12:35 +01:00
src = fetchFromGitHub {
owner = "utelle";
repo = "wxsqlite3";
rev = "v${version}";
2020-11-12 11:07:52 +00:00
sha256 = "0q5glzr49rjnpp6iqrx7zr9bz4n2ca0q0i0phk7y27rmxzrgpxk1";
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 ]
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa darwin.stubs.setfile darwin.stubs.rez darwin.stubs.derez ];
2016-07-05 08:12:35 +01:00
meta = with stdenv.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 ];
license = [ licenses.lgpl2 ];
};
}