32 lines
656 B
Nix
32 lines
656 B
Nix
|
{ stdenv, fetchurl, perl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "convmv-2.05";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://www.j3e.de/linux/convmv/${name}.tar.gz";
|
||
|
sha256 = "19hwv197p7c23f43vvav5bs19z9b72jzca2npkjsxgprwj5ardjk";
|
||
|
};
|
||
|
|
||
|
preBuild=''
|
||
|
makeFlags="PREFIX=$out"
|
||
|
'';
|
||
|
|
||
|
patchPhase=''
|
||
|
tar -xf testsuite.tar
|
||
|
patchShebangs .
|
||
|
'';
|
||
|
|
||
|
doCheck = true;
|
||
|
checkTarget = "test";
|
||
|
|
||
|
buildInputs = [ perl ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Converts filenames from one encoding to another";
|
||
|
platforms = platforms.linux ++ platforms.freebsd ++ platforms.cygwin;
|
||
|
maintainers = [ ];
|
||
|
license = licenses.gpl2Plus;
|
||
|
};
|
||
|
}
|