afio: update 2.5.1 -> 2.5.2

This commit is contained in:
Philipp Gesang
2019-01-27 21:51:12 +01:00
parent fa5b8f82c5
commit b0c26257f0
3 changed files with 48 additions and 51 deletions
+3 -3
View File
@@ -1,19 +1,19 @@
{ stdenv, fetchurl } :
stdenv.mkDerivation rec {
version = "2.5.1";
version = "2.5.2";
name = "afio-${version}";
src = fetchurl {
url = "http://members.chello.nl/~k.holtman/${name}.tgz";
sha256 = "363457a5d6ee422d9b704ef56d26369ca5ee671d7209cfe799cab6e30bf2b99a";
sha256 = "1fa29wlqv76hzf8bxp1qpza1r23pm2f3m7rcf0jpwm6z150s2k66";
};
/*
* A patch to simplify the installation and for removing the
* hard coded dependency on GCC.
*/
patches = [ ./afio-2.5.1-install.patch ];
patches = [ ./0001-makefile-fix-installation.patch ];
installFlags = "DESTDIR=$(out)";