1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "http://http.debian.net/debian/pool/main/m/mkcue/mkcue_${version}.orig.tar.gz";
9 sha256 = "0rs897wp08z4hd904bjb5sl4lb8qxj82x5ayklr28bhg9pd5gbra";
12 preInstall = "mkdir -pv $out/bin";
13 postInstall = "chmod -v +w $out/bin/mkcue";
16 description = "Generates CUE sheets from a CD TOC";
17 license = licenses.lgpl2Plus;
18 platforms = platforms.linux;
19 maintainers = with maintainers; [ pSub ];