mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 02:47:53 +00:00
cuetools: symlink cuetag to cuetag.sh
Debian-based distros call cuetag.sh "cuetag" (see https://packages.debian.org/buster/amd64/cuetools/filelist). This adds a symlink for compatibility with those distros.
This commit is contained in:
parent
f97fa7aca1
commit
99d338b130
@ -15,6 +15,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ bison flac flex id3v2 vorbis-tools ];
|
||||
|
||||
postInstall = ''
|
||||
# add link for compatibility with Debian-based distros, which package `cuetag.sh` as `cuetag`
|
||||
ln -s $out/bin/cuetag.sh $out/bin/cuetag
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A set of utilities for working with cue files and toc files";
|
||||
homepage = https://github.com/svend/cuetools;
|
||||
|
Loading…
Reference in New Issue
Block a user