2016-01-23 15:31:05 -08:00
|
|
|
{ stdenv, fetchurl, intltool, perl, gettext, libusb, pkgconfig, bluez
|
2016-09-11 14:24:51 -07:00
|
|
|
, readline, pcsclite, libical, gtk2, glib, libXpm }:
|
2009-06-10 02:45:03 -07:00
|
|
|
|
2016-01-23 15:31:05 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gnokii";
|
2016-01-23 15:31:05 -08:00
|
|
|
version = "0.6.31";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "0sjjhm40662bj6j0jh3sd25b8nww54nirpwamz618rg6pb5hjwm8";
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://www.gnokii.org/download/gnokii/${pname}-${version}.tar.gz";
|
2016-01-23 15:31:05 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2009-11-22 11:28:56 -08:00
|
|
|
perl intltool gettext libusb
|
2016-09-11 14:24:51 -07:00
|
|
|
glib gtk2 pkgconfig bluez readline
|
2011-03-15 16:09:14 -07:00
|
|
|
libXpm pcsclite libical
|
2009-06-10 02:45:03 -07:00
|
|
|
];
|
2010-09-18 09:29:47 -07:00
|
|
|
|
2009-06-10 02:45:03 -07:00
|
|
|
meta = {
|
|
|
|
description = "Cellphone tool";
|
2010-09-27 11:15:33 -07:00
|
|
|
homepage = http://www.gnokii.org;
|
2016-01-23 15:31:05 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-04-10 14:34:03 -07:00
|
|
|
broken = true; # 2018-04-10
|
2009-06-10 02:45:03 -07:00
|
|
|
};
|
|
|
|
}
|