nixos/alsa: reintroduce hardware.alsa.enablePersistence (#373529)
[NixPkgs.git] / pkgs / applications / audio / cd-discid / default.nix
blob25898ef8bd2788dab2572def6a905a0930114338
2   fetchurl,
3   lib,
4   stdenv,
5   IOKit ? null,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "cd-discid";
10   version = "1.4";
12   src = fetchurl {
13     url = "http://linukz.org/download/${pname}-${version}.tar.gz";
14     sha256 = "0qrcvn7227qaayjcd5rm7z0k5q89qfy5qkdgwr5pd7ih0va8rmpz";
15   };
17   installFlags = [
18     "PREFIX=$(out)"
19     "INSTALL=install"
20   ];
22   buildInputs = [ ] ++ lib.optional stdenv.hostPlatform.isDarwin IOKit;
24   meta = with lib; {
25     homepage = "http://linukz.org/cd-discid.shtml";
26     license = licenses.gpl2Plus;
27     platforms = platforms.unix;
28     description = "Command-line utility to get CDDB discid information from a CD-ROM disc";
29     mainProgram = "cd-discid";
31     longDescription = ''
32       cd-discid is a backend utility to get CDDB discid information
33       from a CD-ROM disc.  It was originally designed for cdgrab (now
34       abcde), but can be used for any purpose requiring CDDB data.
35     '';
36   };