nixpkgs/pkgs/by-name/cr/crip/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{
lib,
stdenv,
2018-04-08 01:42:13 +00:00
fetchurl,
makeWrapper,
perlPackages,
cdparanoia,
coreutils,
eject,
flac,
gnugrep,
nano,
sox,
vorbis-tools,
vorbisgain,
which,
}:
stdenv.mkDerivation rec {
pname = "crip";
version = "3.9";
2018-04-08 01:42:13 +00:00
src = fetchurl {
url = "http://bach.dynet.com/${pname}/src/${pname}-${version}.tar.gz";
2018-04-08 01:42:13 +00:00
sha256 = "0pk9152wll6fmkj1pki3fz3ijlf06jyk32v31yarwvdkwrk7s9xz";
};
buildInputs = [
perlPackages.perl
perlPackages.CDDB_get
];
2018-04-08 01:42:13 +00:00
nativeBuildInputs = [ makeWrapper ];
toolDeps = lib.makeBinPath [
2018-04-08 01:42:13 +00:00
cdparanoia
coreutils
eject
flac
gnugrep
sox
vorbis-tools
vorbisgain
which
];
scripts = [
"crip"
"editcomment"
"editfilenames"
];
installPhase = ''
mkdir -p $out/bin/
for script in ${lib.escapeShellArgs scripts}; do
2018-04-08 01:42:13 +00:00
cp $script $out/bin/
substituteInPlace $out/bin/$script \
2024-06-24 00:07:29 +00:00
--replace-fail '$editor = "vim";' '$editor = "${nano}/bin/nano";'
2018-04-08 01:42:13 +00:00
wrapProgram $out/bin/$script \
--set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.CDDB_get ]}" \
2018-04-08 01:42:13 +00:00
--set PATH "${toolDeps}"
done
'';
meta = {
homepage = "http://bach.dynet.com/crip/";
2018-04-08 01:42:13 +00:00
description = "Terminal-based ripper/encoder/tagger tool for creating Ogg Vorbis/FLAC files";
2022-09-29 08:54:21 +00:00
license = lib.licenses.gpl1Only;
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.endgame ];
2018-04-08 01:42:13 +00:00
};
}