From 01545132b4013b5c921ee2320348ae7b4ca08a71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 16 Dec 2008 14:06:46 +0000 Subject: [PATCH] Cdrkit 1.1.9. svn path=/nixpkgs/trunk/; revision=13647 --- pkgs/tools/cd-dvd/cdrkit/default.nix | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/cd-dvd/cdrkit/default.nix b/pkgs/tools/cd-dvd/cdrkit/default.nix index 03ef0c0cad5..7e5bb44764c 100644 --- a/pkgs/tools/cd-dvd/cdrkit/default.nix +++ b/pkgs/tools/cd-dvd/cdrkit/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, cmake, libcap, zlib, bzip2}: -stdenv.mkDerivation { - name = "cdrkit-1.1.8"; +stdenv.mkDerivation rec { + name = "cdrkit-1.1.9"; src = fetchurl { - url = http://cdrkit.org/releases/cdrkit-1.1.8.tar.gz; - sha256 = "0dzj89swc5h9jr6rr9y6cq6742gc1sdfaivz8r26yfmv5ajx104x"; + url = "http://cdrkit.org/releases/${name}.tar.gz"; + sha256 = "18pgak1qh2xsb3sjikfh1hqn27v2ax72nx7r7sjkdw5yqys8mmfm"; }; buildInputs = [cmake libcap zlib bzip2]; @@ -14,7 +14,19 @@ stdenv.mkDerivation { meta = { description = "Portable command-line CD/DVD recorder software, mostly compatible with cdrtools"; + + longDescription = '' + Cdrkit is a suite of programs for recording CDs and DVDs, + blanking CD-RW media, creating ISO-9660 filesystem images, + extracting audio CD data, and more. The programs included in + the cdrkit package were originally derived from several sources, + most notably mkisofs by Eric Youngdale and others, cdda2wav by + Heiko Eissfeldt, and cdrecord by Jörg Schilling. However, + cdrkit is not affiliated with any of these authors; it is now an + independent project. + ''; + homepage = http://cdrkit.org/; - license = "GPL2"; + license = "GPLv2"; }; }