1 {lib, stdenv, fetchurl, id3lib, groff, zlib}:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/id3v2/${pname}-${version}.tar.gz";
9 sha256 = "1gr22w8gar7zh5pyyvdy7cy26i47l57jp1l1nd60xfwx339zl1c1";
12 nativeBuildInputs = [ groff ];
13 buildInputs = [ id3lib zlib ];
15 makeFlags = [ "PREFIX=$(out)" ];
16 buildFlags = [ "clean" "all" ];
19 mkdir -p $out/{bin,share/man/man1}
23 description = "Command line editor for id3v2 tags";
24 homepage = "https://id3v2.sourceforge.net/";
25 license = licenses.gpl2Plus;
26 platforms = with platforms; unix;
27 mainProgram = "id3v2";