pkgs.gnokii: add patches according to archlinux build

This commit is contained in:
makefu 2021-08-31 15:25:27 +02:00
parent 6fa5b38bed
commit 6e9910aa65
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -0,0 +1,32 @@
{ lib, stdenv, fetchurl, intltool, perl, gettext, libusb-compat-0_1, pkg-config, bluez
, readline, pcsclite, libical, gtk2, glib, libXpm
, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "gnokii";
version = "0.6.31";
src = fetchurl {
sha256 = "0sjjhm40662bj6j0jh3sd25b8nww54nirpwamz618rg6pb5hjwm8";
url = "https://www.gnokii.org/download/gnokii/${pname}-${version}.tar.gz";
};
patches = let
base = "https://aur.archlinux.org/cgit/aur.git/plain";
in [
(fetchpatch { url = "${base}/gnokii-gcc7.patch?h=${pname}"; sha256 = "0q1f783mxx3h212y8kqazvcy3vv4rxbvf123wy1zpsyw2z9fwsa5"; })
(fetchpatch { url = "${base}/gnokii-gcc5.patch?h=${pname}"; sha256 = "1vfsnhk37qzykx8sfilggwn1vq6iknx2r5z7rd4zrhgid2yqi2qc"; })
];
buildInputs = [
perl intltool gettext libusb-compat-0_1
glib gtk2 pkg-config bluez readline
libXpm pcsclite libical
];
meta = {
description = "Cellphone tool";
homepage = "http://www.gnokii.org";
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
};
}