nixpkgs/pkgs/tools/misc/gnokii/default.nix

27 lines
728 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, intltool, perl, gettext, libusb-compat-0_1, pkg-config, bluez
, readline, pcsclite, libical, gtk2, glib, libXpm }:
2016-01-23 23:31:05 +00:00
stdenv.mkDerivation rec {
pname = "gnokii";
2016-01-23 23:31:05 +00:00
version = "0.6.31";
src = fetchurl {
sha256 = "0sjjhm40662bj6j0jh3sd25b8nww54nirpwamz618rg6pb5hjwm8";
url = "https://www.gnokii.org/download/gnokii/${pname}-${version}.tar.gz";
2016-01-23 23:31:05 +00:00
};
buildInputs = [
2020-04-28 03:29:39 +00:00
perl intltool gettext libusb-compat-0_1
2021-01-17 03:51:22 +00:00
glib gtk2 pkg-config bluez readline
libXpm pcsclite libical
];
meta = {
description = "Cellphone tool";
homepage = "http://www.gnokii.org";
2021-01-15 09:19:50 +00:00
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
2018-04-10 21:34:03 +00:00
broken = true; # 2018-04-10
};
}