wxsqlite3: format, cleanup

This commit is contained in:
Sandro Jäckel 2021-08-09 11:32:44 +02:00
parent e566af7f40
commit 97cf853980
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 10 additions and 4 deletions

@ -1,9 +1,13 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, wxGTK
, sqlite
, darwin
, Cocoa
, setfile
, rez
, derez
}:
stdenv.mkDerivation rec {
@ -20,13 +24,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ wxGTK sqlite ]
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa darwin.stubs.setfile darwin.stubs.rez darwin.stubs.derez ];
++ 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 = [ licenses.lgpl3Plus licenses.gpl3Plus ];
license = with licenses; [ lgpl3Plus gpl3Plus ];
};
}

@ -32309,6 +32309,8 @@ with pkgs;
wxsqlite3 = callPackage ../development/libraries/wxsqlite3 {
wxGTK = wxGTK30;
inherit (darwin.apple_sdk.frameworks) Cocoa;
inherit (darwin.stubs) setfile rez derez;
};
wxsqliteplus = callPackage ../development/libraries/wxsqliteplus {