wxsqlite3: format, cleanup
This commit is contained in:
parent
e566af7f40
commit
97cf853980
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user