2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, intltool, perl, gettext, libusb-compat-0_1, pkg-config, 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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnokii";
|
2016-01-23 23:31:05 +00:00
|
|
|
version = "0.6.31";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "0sjjhm40662bj6j0jh3sd25b8nww54nirpwamz618rg6pb5hjwm8";
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.gnokii.org/download/gnokii/${pname}-${version}.tar.gz";
|
2016-01-23 23:31:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-04-28 04:29:39 +01:00
|
|
|
perl intltool gettext libusb-compat-0_1
|
2021-01-17 03:51:22 +00:00
|
|
|
glib gtk2 pkg-config 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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.gnokii.org";
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = [ lib.maintainers.raskin ];
|
|
|
|
platforms = lib.platforms.linux;
|
2018-04-10 22:34:03 +01:00
|
|
|
broken = true; # 2018-04-10
|
2009-06-10 10:45:03 +01:00
|
|
|
};
|
|
|
|
}
|