c683abab60
Upstream changelog for version 4.11 through 4.12 doesn't seem to be available anymore and the change summaries from the project page are in German, but here's a comparison from a GitHub mirror I've found: https://github.com/cstim/gwenhywfar/compare/4.11.1beta...4055683538b6 I've shortened the URL to not include the file name in the URL itself because we use the name attribute in fetchurl to force the name anyway. A quick way to find out about the upstream download URLs is: curl 'http://www.aquamaniac.de/sites/download/packages.php?package=01&showall=1' \ | sed -nre 's/^.*<a\>.*\<href="([^"]+)".*/\1/p' Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @cillianderoiste, @urkud
34 lines
1002 B
Nix
34 lines
1002 B
Nix
{ stdenv, fetchurl, gnutls, gtk, libgcrypt, pkgconfig, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gwenhywfar-${version}";
|
|
|
|
version = "4.15.3";
|
|
|
|
src = let
|
|
releaseNum = 201; # Change this on update
|
|
qstring = "package=01&release=${toString releaseNum}&file=01";
|
|
mkURLs = map (base: "${base}/sites/download/download.php?${qstring}");
|
|
in fetchurl {
|
|
name = "${name}.tar.gz";
|
|
urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ];
|
|
sha256 = "0fp67s932x66xfljb26zbrn8ambbc5y5c3hllr6l284nr63qf3ka";
|
|
};
|
|
|
|
propagatedBuildInputs = [ gnutls libgcrypt ];
|
|
|
|
buildInputs = [ gtk qt4 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
QTDIR = qt4;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "OS abstraction functions used by aqbanking and related tools";
|
|
homepage = "http://www2.aquamaniac.de/sites/download/packages.php?package=01&showall=1";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|