mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, makeWrapper
|
|
|
|
, perlPackages
|
|
|
|
, cdparanoia
|
|
, coreutils
|
|
, eject
|
|
, flac
|
|
, gnugrep
|
|
, nano
|
|
, sox
|
|
, vorbis-tools
|
|
, vorbisgain
|
|
, which
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "crip";
|
|
version = "3.9";
|
|
src = fetchurl {
|
|
url = "http://bach.dynet.com/${pname}/src/${pname}-${version}.tar.gz";
|
|
sha256 = "0pk9152wll6fmkj1pki3fz3ijlf06jyk32v31yarwvdkwrk7s9xz";
|
|
};
|
|
|
|
buildInputs = [ perlPackages.perl perlPackages.CDDB_get ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
toolDeps = lib.makeBinPath [
|
|
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
|
|
cp $script $out/bin/
|
|
|
|
substituteInPlace $out/bin/$script \
|
|
--replace-fail '$editor = "vim";' '$editor = "${nano}/bin/nano";'
|
|
|
|
wrapProgram $out/bin/$script \
|
|
--set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.CDDB_get ]}" \
|
|
--set PATH "${toolDeps}"
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://bach.dynet.com/crip/";
|
|
description = "Terminal-based ripper/encoder/tagger tool for creating Ogg Vorbis/FLAC files";
|
|
license = lib.licenses.gpl1Only;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.endgame ];
|
|
};
|
|
}
|