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

26 lines
674 B
Nix
Raw Normal View History

2016-01-23 23:31:05 +00:00
{ stdenv, fetchurl, intltool, perl, gettext, libusb, pkgconfig, bluez
, readline, pcsclite, libical, gtk, glib, libXpm }:
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 = [
perl intltool gettext libusb
glib gtk pkgconfig bluez readline
libXpm pcsclite libical
];
meta = {
description = "Cellphone tool";
homepage = http://www.gnokii.org;
2016-01-23 23:31:05 +00:00
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = stdenv.lib.platforms.linux;
};
}