2021-01-11 08:54:33 +01:00
|
|
|
{ fetchurl, lib, stdenv
|
2016-08-12 05:14:20 +02:00
|
|
|
, IOKit ? null }:
|
2008-05-26 22:18:45 +02:00
|
|
|
|
2015-10-27 19:06:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cd-discid";
|
2015-10-27 19:06:13 +01:00
|
|
|
version = "1.4";
|
2008-05-26 22:18:45 +02:00
|
|
|
|
2015-10-27 19:06:13 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "http://linukz.org/download/${pname}-${version}.tar.gz";
|
2015-10-27 19:06:13 +01:00
|
|
|
sha256 = "0qrcvn7227qaayjcd5rm7z0k5q89qfy5qkdgwr5pd7ih0va8rmpz";
|
|
|
|
};
|
2008-05-26 22:18:45 +02:00
|
|
|
|
2019-11-05 02:10:31 +01:00
|
|
|
installFlags = [ "PREFIX=$(out)" "INSTALL=install" ];
|
2008-05-26 22:18:45 +02:00
|
|
|
|
2016-08-12 05:14:20 +02:00
|
|
|
buildInputs = []
|
2021-01-15 14:21:58 +01:00
|
|
|
++ lib.optional stdenv.isDarwin IOKit;
|
2016-08-12 05:14:20 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://linukz.org/cd-discid.shtml";
|
2015-10-27 19:06:13 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Command-line utility to get CDDB discid information from a CD-ROM disc";
|
2008-05-26 22:18:45 +02:00
|
|
|
|
2015-10-27 19:06:13 +01:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|