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

30 lines
866 B
Nix
Raw Normal View History

2017-04-08 03:35:21 +00:00
{ stdenv, fetchFromGitHub, wxGTK, sqlite
, darwin }:
2016-07-05 07:12:35 +00:00
stdenv.mkDerivation rec {
name = "wxsqlite3-${version}";
version = "3.3.1";
src = fetchFromGitHub {
owner = "utelle";
repo = "wxsqlite3";
rev = "v${version}";
sha1 = "bb8p58g88nkdcsj3h4acx7h925n2cy9g";
};
2017-04-08 03:35:21 +00:00
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
cp build28/Info.plist.in build28/wxmac.icns build/
'';
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 07:12:35 +00:00
meta = with stdenv.lib; {
homepage = https://utelle.github.io/wxsqlite3/ ;
2016-07-05 07:12:35 +00:00
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
platforms = platforms.unix;
maintainers = with maintainers; [ vrthra ];
license = [ licenses.lgpl2 ];
};
}