tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
wxsqlite3: init at 3.3.1
Rahul Gopinath
9 years ago
86e2cd90
65364cc8
+27
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
wxsqlite3
default.nix
top-level
all-packages.nix
+23
pkgs/development/libraries/wxsqlite3/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, wxGTK, sqlite }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "wxsqlite3-${version}";
5
5
+
version = "3.3.1";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "utelle";
9
9
+
repo = "wxsqlite3";
10
10
+
rev = "v${version}";
11
11
+
sha1 = "bb8p58g88nkdcsj3h4acx7h925n2cy9g";
12
12
+
};
13
13
+
14
14
+
buildInputs = [ wxGTK sqlite ];
15
15
+
16
16
+
meta = with stdenv.lib; {
17
17
+
homepage = http://utelle.github.io/wxsqlite3/ ;
18
18
+
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
19
19
+
platforms = platforms.unix;
20
20
+
maintainers = with maintainers; [ vrthra ];
21
21
+
license = [ licenses.lgpl2 ];
22
22
+
};
23
23
+
}
+4
pkgs/top-level/all-packages.nix
···
17200
17200
17201
17201
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
17202
17202
17203
17203
+
wxsqlite3 = callPackage ../development/libraries/wxsqlite3 {
17204
17204
+
wxGTK = wxGTK30;
17205
17205
+
};
17206
17206
+
17203
17207
x2x = callPackage ../tools/X11/x2x { };
17204
17208
17205
17209
xboxdrv = callPackage ../misc/drivers/xboxdrv { };