bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
28 lines
824 B
Nix
28 lines
824 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cd-discid-${version}";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://linukz.org/download/${name}.tar.gz";
|
|
sha256 = "0qrcvn7227qaayjcd5rm7z0k5q89qfy5qkdgwr5pd7ih0va8rmpz";
|
|
};
|
|
|
|
installFlags = "PREFIX=$(out) INSTALL=install";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://linukz.org/cd-discid.shtml;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.rycee ];
|
|
platforms = platforms.unix;
|
|
description = "Command-line utility to get CDDB discid information from a CD-ROM disc";
|
|
|
|
longDescription = ''
|
|
cd-discid is a backend utility to get CDDB discid information
|
|
from a CD-ROM disc. It was originally designed for cdgrab (now
|
|
abcde), but can be used for any purpose requiring CDDB data.
|
|
'';
|
|
};
|
|
}
|