nixpkgs/pkgs/applications/misc/gammu/default.nix

36 lines
981 B
Nix
Raw Normal View History

2016-11-19 20:24:50 +00:00
{ stdenv, fetchFromGitHub, python, pkgconfig, cmake, bluez, libusb1, curl
2016-02-14 18:22:47 +00:00
, libiconv, gettext, sqlite
, dbiSupport ? false, libdbi ? null, libdbiDrivers ? null
, postgresSupport ? false, postgresql ? null
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "gammu-${version}";
2016-11-19 20:24:50 +00:00
version = "1.38.2";
2016-11-19 20:24:50 +00:00
src = fetchFromGitHub {
owner = "gammu";
repo = "gammu";
rev = version;
sha256 = "1rk3p3sjyy6n6mlqs4qgyxna4swrh1zm7b77npxv8j341wxj3khv";
};
2016-11-19 20:24:50 +00:00
patches = [ ./bashcomp-dir.patch ./systemd.patch ];
2016-02-14 18:22:47 +00:00
buildInputs = [ python pkgconfig cmake bluez libusb1 curl gettext sqlite libiconv ]
++ optionals dbiSupport [ libdbi libdbiDrivers ]
++ optionals postgresSupport [ postgresql ];
enableParallelBuilding = true;
meta = {
homepage = "http://wammu.eu/gammu/";
2016-02-14 18:22:47 +00:00
description = "Command line utility and library to control mobile phones";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.coroa ];
};
}