nixpkgs/pkgs/tools/misc/gnokii/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* 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
2018-06-28 20:43:35 +02:00

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
};
}