mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
37 lines
788 B
Nix
37 lines
788 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, wxGTK
|
|
, sqlite
|
|
, Cocoa
|
|
, setfile
|
|
, rez
|
|
, derez
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wxsqlite3";
|
|
version = "4.9.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "utelle";
|
|
repo = "wxsqlite3";
|
|
rev = "v${version}";
|
|
hash = "sha256-ah9EFj15cP9soVJATVJk4XGYItxcrt4HB6ZTfpsVhS8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ sqlite wxGTK ]
|
|
++ 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 = with licenses; [ lgpl3Plus gpl3Plus ];
|
|
};
|
|
}
|