2016-11-19 21:24:50 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python, pkgconfig, cmake, bluez, libusb1, curl
|
2016-02-14 19:22:47 +01:00
|
|
|
, libiconv, gettext, sqlite
|
|
|
|
, dbiSupport ? false, libdbi ? null, libdbiDrivers ? null
|
|
|
|
, postgresSupport ? false, postgresql ? null
|
|
|
|
}:
|
2013-12-27 22:33:52 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gammu";
|
2019-02-25 17:06:28 +01:00
|
|
|
version = "1.40.0";
|
2013-12-27 22:33:52 +01:00
|
|
|
|
2016-11-19 21:24:50 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gammu";
|
|
|
|
repo = "gammu";
|
|
|
|
rev = version;
|
2019-02-25 17:06:28 +01:00
|
|
|
sha256 = "1jjaa9r3x6i8gv3yn1ngg815s6gsxblsw4wb5ddm77kamn2qyvpf";
|
2013-12-27 22:33:52 +01:00
|
|
|
};
|
|
|
|
|
2016-11-19 21:24:50 +01:00
|
|
|
patches = [ ./bashcomp-dir.patch ./systemd.patch ];
|
2013-12-27 22:33:52 +01:00
|
|
|
|
2017-04-05 02:31:56 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
|
|
|
|
buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ]
|
2016-02-14 19:22:47 +01:00
|
|
|
++ optionals dbiSupport [ libdbi libdbiDrivers ]
|
|
|
|
++ optionals postgresSupport [ postgresql ];
|
2013-12-27 22:33:52 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://wammu.eu/gammu/;
|
2016-02-14 19:22:47 +01:00
|
|
|
description = "Command line utility and library to control mobile phones";
|
2013-12-27 22:33:52 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.coroa ];
|
|
|
|
};
|
|
|
|
}
|