3
0
Fork 0
forked from mirrors/nixpkgs

sqlitebrowser: init at 3.7.0

[Bjørn: add name=... to fetchzip.]
This commit is contained in:
Matthias Beyer 2015-07-13 17:45:08 +02:00 committed by Bjørn Forsman
parent b2ae45bd77
commit 7e3c95a0b8
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchzip, qt4, sqlite, cmake }:
stdenv.mkDerivation rec {
version = "3.7.0";
name = "sqlitebrowser-${version}";
src = fetchzip {
name = "${name}-src";
url = "https://github.com/sqlitebrowser/sqlitebrowser/archive/v${version}.tar.gz";
sha256 = "1zsgylnxk4lyg7p6k6pv8d3mh1k0wkfcplh5c5da3x3i9a3qs78j";
};
buildInputs = [ qt4 sqlite cmake ];
meta = with stdenv.lib; {
description = "DB Browser for SQLite";
homepage = "http://sqlitebrowser.org/";
license = licenses.gpl3;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.linux; # can only test on linux
};
}

View file

@ -5734,6 +5734,8 @@ let
flex = flex_2_5_35;
};
sqlitebrowser = callPackage ../development/tools/database/sqlitebrowser { };
sselp = callPackage ../tools/X11/sselp{ };
stm32flash = callPackage ../development/tools/misc/stm32flash { };