* Move dvd+rw-tools and cdrkit to tools/cd-dvd.
* Added cdrdao. svn path=/nixpkgs/trunk/; revision=12426
This commit is contained in:
parent
8ea9bd1d83
commit
a2613e936a
19
pkgs/tools/cd-dvd/cdrdao/default.nix
Normal file
19
pkgs/tools/cd-dvd/cdrdao/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "cdrdao-1.2.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://sourceforge/cdrdao/cdrdao-1.2.2.tar.bz2;
|
||||||
|
sha256 = "0f40wm08zm2809xa6kscfk10vgqa3g2vdydnr641r3kzwm0h066y";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = "RM=rm LN=ln MV=mv";
|
||||||
|
|
||||||
|
#buildInputs = [cmake libcap zlib bzip2];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A tool for recording audio or data CD-Rs in disk-at-once (DAO) mode";
|
||||||
|
homepage = http://cdrdao.sourceforge.net/;
|
||||||
|
};
|
||||||
|
}
|
@ -477,6 +477,14 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cdrdao = import ../tools/cd-dvd/cdrdao {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
|
cdrkit = import ../tools/cd-dvd/cdrkit {
|
||||||
|
inherit fetchurl stdenv cmake libcap zlib bzip2;
|
||||||
|
};
|
||||||
|
|
||||||
cheetahTemplate = builderDefsPackage (selectVersion ../tools/text/cheetah-template "2.0.1") {
|
cheetahTemplate = builderDefsPackage (selectVersion ../tools/text/cheetah-template "2.0.1") {
|
||||||
inherit makeWrapper;
|
inherit makeWrapper;
|
||||||
python = python25;
|
python = python25;
|
||||||
@ -553,6 +561,10 @@ let pkgs = rec {
|
|||||||
|
|
||||||
dosfstools = dosfstoolsFun null;
|
dosfstools = dosfstoolsFun null;
|
||||||
|
|
||||||
|
dvdplusrwtools = import ../tools/cd-dvd/dvd+rw-tools {
|
||||||
|
inherit fetchurl stdenv cdrkit m4;
|
||||||
|
};
|
||||||
|
|
||||||
enscript = import ../tools/text/enscript {
|
enscript = import ../tools/text/enscript {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
@ -5744,10 +5756,6 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
cdrkit = import ../applications/misc/cdrkit {
|
|
||||||
inherit fetchurl stdenv cmake libcap zlib bzip2;
|
|
||||||
};
|
|
||||||
|
|
||||||
chatzilla =
|
chatzilla =
|
||||||
xulrunnerWrapper {
|
xulrunnerWrapper {
|
||||||
launcher = "chatzilla";
|
launcher = "chatzilla";
|
||||||
@ -5879,10 +5887,6 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv qt4 djvulibre;
|
inherit fetchurl stdenv qt4 djvulibre;
|
||||||
};
|
};
|
||||||
|
|
||||||
dvdplusrwtools = import ../os-specific/linux/dvd+rw-tools {
|
|
||||||
inherit fetchurl stdenv cdrkit m4;
|
|
||||||
};
|
|
||||||
|
|
||||||
# building eclipise from source
|
# building eclipise from source
|
||||||
# experimental tested on x86_64-linux only
|
# experimental tested on x86_64-linux only
|
||||||
eclipse_classic_src = import ../applications/editors/eclipse/eclipse_classic.nix {
|
eclipse_classic_src = import ../applications/editors/eclipse/eclipse_classic.nix {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user