57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
27 lines
709 B
Nix
27 lines
709 B
Nix
{ stdenv, fetchurl, intltool, perl, gettext, libusb, pkgconfig, bluez
|
|
, readline, pcsclite, libical, gtk2, glib, libXpm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnokii-${version}";
|
|
version = "0.6.31";
|
|
|
|
src = fetchurl {
|
|
sha256 = "0sjjhm40662bj6j0jh3sd25b8nww54nirpwamz618rg6pb5hjwm8";
|
|
url = "https://www.gnokii.org/download/gnokii/${name}.tar.gz";
|
|
};
|
|
|
|
buildInputs = [
|
|
perl intltool gettext libusb
|
|
glib gtk2 pkgconfig bluez readline
|
|
libXpm pcsclite libical
|
|
];
|
|
|
|
meta = {
|
|
description = "Cellphone tool";
|
|
homepage = http://www.gnokii.org;
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
broken = true; # 2018-04-10
|
|
};
|
|
}
|