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