2010-07-03 08:06:01 +00:00
|
|
|
{ stdenv, fetchurl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-26 01:39:43 +00:00
|
|
|
name = "convmv-2.04";
|
2010-07-03 08:06:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.j3e.de/linux/convmv/${name}.tar.gz";
|
2018-02-26 01:39:43 +00:00
|
|
|
sha256 = "075xn1ill26hbhg4nl54sp75b55db3ikl7lvhqb9ijvkpi67j6yy";
|
2010-07-03 08:06:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild=''
|
|
|
|
makeFlags="PREFIX=$out"
|
|
|
|
'';
|
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
patchPhase=''
|
2010-07-03 08:06:01 +00:00
|
|
|
tar -xf testsuite.tar
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs .
|
2010-07-03 08:06:01 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-06-22 21:03:36 +00:00
|
|
|
description = "Converts filenames from one encoding to another";
|
2011-01-05 10:07:42 +00:00
|
|
|
platforms = platforms.linux ++ platforms.freebsd ++ platforms.cygwin;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = [ ];
|
2010-07-03 08:06:01 +00:00
|
|
|
};
|
|
|
|
}
|