stow: 2.2.0 -> 2.2.2

This commit is contained in:
Marius Bakke
2016-05-30 18:03:46 +02:00
committed by Moritz Ulrich
parent 0c9e904943
commit 8f7b525fc2
2 changed files with 7 additions and 21 deletions
+7 -6
View File
@@ -1,16 +1,17 @@
{ stdenv, fetchurl, perl, perlPackages }:
let
version = "2.2.2";
in
stdenv.mkDerivation {
name = "stow-2.2.0";
name = "stow-${version}";
src = fetchurl {
url = mirror://gnu/stow/stow-2.2.0.tar.bz2;
sha256 = "01bbsqjmrnd9925s3grvgjnrl52q4w65imrvzy05qaij3pz31g46";
url = "mirror://gnu/stow/stow-${version}.tar.bz2";
sha256 = "1zd6g9cm3whvy5f87j81j4npl7q6kxl25f7z7p9ahiqfjqs200m0";
};
buildInputs = [ perl perlPackages.TestOutput ];
patches = [ ./precedence-issue.patch ];
buildInputs = with perlPackages; [ perl IOStringy TestOutput ];
doCheck = true;