* Get rid of many instances of "args: with args;", and other coding

guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
This commit is contained in:
Eelco Dolstra 2010-07-28 11:55:54 +00:00
parent b4a3f99c78
commit 6609710409
132 changed files with 925 additions and 958 deletions

View file

@ -1,10 +1,7 @@
args: with args;
{ stdenv, fetchurl, jackaudio, pkgconfig }:
let name = "jackmeter-0.3";
in
stdenv.mkDerivation {
inherit name;
stdenv.mkDerivation rec {
name = "jackmeter-0.3";
src = fetchurl {
url = "http://www.aelius.com/njh/jackmeter/${name}.tar.gz";
@ -14,10 +11,10 @@ stdenv.mkDerivation {
buildInputs = [ jackaudio pkgconfig ];
meta = {
description = "console jack loudness meter";
description = "Console jack loudness meter";
homepage = http://www.aelius.com/njh/jackmeter/;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,7 +1,7 @@
args: with args;
{ stdenv, fetchurl, builderDefs }:
let
src =
fetchurl {
src = fetchurl {
url = http://www.ladspa.org/ladspa_sdk/ladspa.h.txt;
sha256 = "1b908csn85ng9sz5s5d1mqk711cmawain2z8px2ajngihdrynb67";
};

View file

@ -1,4 +1,5 @@
args : with args;
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "bvi-1.3.2";
@ -10,7 +11,7 @@ stdenv.mkDerivation {
buildInputs = [ ncurses ];
meta = {
description = "hex editor with vim style keybindings";
description = "Hex editor with vim style keybindings";
homepage = http://bvi.sourceforge.net/download.html;
license = "GPL2";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, ant }:
stdenv.mkDerivation {
name = "jedit-4.2";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, ncurses, gettext }:
stdenv.mkDerivation (rec {
pname = "nano";
version = "2.2.3";
@ -9,9 +10,10 @@ stdenv.mkDerivation (rec {
url = "mirror://gnu/nano/${name}.tar.gz";
sha256 = "1vpl993xrpj8bqi1ayga8fc0j2jag90xp6rqakzwm3bxw71hmwi2";
};
buildInputs = [ ncurses gettext ];
# configureFlags = "--enable-tiny";
configureFlags = "
configureFlags = ''
--disable-browser
--disable-help
--disable-justify
@ -20,7 +22,7 @@ stdenv.mkDerivation (rec {
--disable-speller
--disable-tabcomp
--disable-wrapping
";
'';
meta = {
homepage = http://www.nano-editor.org/;

View file

@ -1,13 +1,14 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl, snack, tcl, tk, makeWrapper }:
stdenv.mkDerivation {
name = "wavesurfer-1.8.5";
src = args.fetchurl {
src = fetchurl {
url = http://www.speech.kth.se/wavesurfer/wavesurfer-1.8.5.tar.gz;
sha256 = "1yx9s1j47cq0v40cwq2gn7bdizpw46l95ba4zl9z4gg31mfvm807";
};
buildInputs =(with args; [snack tcl tk makeWrapper]);
buildInputs = [ snack tcl tk makeWrapper ];
installPhase = ''
ensureDir $out/{bin,nix-support,share/wavesurfer/}
@ -15,12 +16,12 @@ args.stdenv.mkDerivation {
mv * $out/nix-support
ln -s $out/{nix-support,bin}/wavesurfer.tcl
wrapProgram "$out/nix-support/wavesurfer.tcl" \
--set TCLLIBPATH "${args.snack}/lib" \
--prefix PATH : "${args.tcl}/bin:${args.tk}/bin"
--set TCLLIBPATH "${snack}/lib" \
--prefix PATH : "${tcl}/bin:${tk}/bin"
'';
meta = {
description = "tool for recording, playing, editing, viewing and labeling of audio";
description = "Tool for recording, playing, editing, viewing and labeling of audio";
homepage = http://www.speech.kth.se/wavesurfer/;
license = "BSD";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "flite-1.3-release";
@ -7,16 +8,18 @@ stdenv.mkDerivation {
sha256 = "12wanxx57bbqgkag54dlqzv6h2kr9053p0z8mkxs0mqy03vja8lj";
};
buildPhase = "
buildPhase =
''
unset buildPhase
ensureDir \$out/lib
ensureDir $out/lib
buildPhase
";
'';
installPhase = "
ensureDir \$out/share/flite
cp -r bin \$out
";
installPhase =
''
ensureDir $out/share/flite
cp -r bin $out
'';
meta = {
description = "Flite text to speech engine";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, postgresql, wxGTK, libxml2, libxslt, openssl }:
stdenv.mkDerivation rec {
name = "pgadmin3-1.10.0";
@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ postgresql wxGTK libxml2 libxslt openssl ];
meta = {
description = "postgresql admin gui tool";
description = "PostgreSQL administration GUI tool";
homepage = http://www.pgadmin.org;
license = "GPL2";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "procmail-3.22";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pstree-2.33";
@ -13,9 +14,7 @@ stdenv.mkDerivation rec {
installPhase = "ensureDir \$out/bin; cp pstree \$out/bin";
meta = {
description = "show the running processes as tree";
# don't know the correct homepage..
homepage = http://fresh.t-systems-sfr.com/unix/src/misc/pstree-2.32.tar.gz;
description = "Show the set of running processes as a tree";
license = "GPL";
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "sbagen-1.4.4";
@ -6,13 +7,12 @@ stdenv.mkDerivation {
buildPhase = "./mk";
installPhase="
ensureDir \$out/{bin,share/sbagen/doc}
cp -r --target-directory=\$out/share/sbagen examples scripts river1.ogg river2.ogg
installPhase = ''
ensureDir $out/{bin,share/sbagen/doc}
cp -r --target-directory=$out/share/sbagen examples scripts river1.ogg river2.ogg
cp sbagen $out/bin
cp --target-directory=\$out/share/sbagen/doc README.txt SBAGEN.txt theory{,2}.txt {wave,holosync,focus,TODO}.txt
";
cp --target-directory=$out/share/sbagen/doc README.txt SBAGEN.txt theory{,2}.txt {wave,holosync,focus,TODO}.txt
'';
src = fetchurl {
url = http://uazu.net/sbagen/sbagen-1.4.4.tgz;
@ -20,7 +20,7 @@ stdenv.mkDerivation {
};
meta = {
description = "binaural sound generator";
description = "Binaural sound generator";
homepage = http://uazu.net/sbagen;
license = "GPL";
};

View file

@ -1,8 +1,9 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "thinkingrock-2.2.1-binary";
src = args.fetchurl {
src = fetchurl {
url = mirror://sourceforge/thinkingrock/ThinkingRock/TR%202.2.1/tr-2.2.1.tar.gz;
sha256 = "0hnwvvyc8miiz8w2g4iy7s4rgfy0kfbncgbgfzpsq6nrzq334kgm";
};
@ -28,10 +29,11 @@ args.stdenv.mkDerivation {
EOF
chmod +x $out/bin/thinkingrock
'';
installPhase = ":";
meta = {
description = "task managing system";
description = "Task management system";
homepage = http://www.thinkingrock.com.au/;
license = "CDDL"; # Common Development and Distribution License
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, python, perl, ncurses, x11, bzip2, zlib, openssl
, spidermonkey, guile, gpm }:
stdenv.mkDerivation rec {
name = "elinks-0.12pre5";
@ -9,12 +10,16 @@ stdenv.mkDerivation rec {
};
buildInputs = [ python perl ncurses x11 bzip2 zlib openssl spidermonkey guile gpm ];
configureFlags = "--enable-finger --enable-html-highlight --with-guile
configureFlags =
''
--enable-finger --enable-html-highlight --with-guile
--with-perl --with-python --enable-gopher --enable-cgi --enable-bittorrent
--enable-nntp --with-openssl=${openssl}";
--enable-nntp --with-openssl=${openssl}
'';
meta = {
description = "Full-Featured Text WWW Browser";
description = "Full-featured text-mode web browser";
homepage = http://elinks.or.cz;
};
}

View file

@ -1,10 +1,10 @@
args: with args;
{ stdenv, fetchurl, pidgin, intltool, libxml2 }:
let version = "1.10.0"; in
let
version = "1.10.0";
in
stdenv.mkDerivation {
name = "pidgin-sipe-${version}";
src = fetchurl {
url = "mirror://sourceforge/sipe/sipe/pidgin-sipe-${version}/pidgin-sipe-${version}.tar.gz";
sha256 = "11d85qxix1dmwvzs3lx0sycsx1d5sy67r9y78fs7z716py4mg9np";

View file

@ -1,7 +1,8 @@
args: with args;
{ stdenv, fetchurl, which, diffutils, gnupatch, gnutar }:
stdenv.mkDerivation rec {
name = "tla-1.3.5";
src = fetchurl {
url = "mirror://gnu/gnu-arch/" + name + ".tar.gz";
sha256 = "01mfzj1i6p4s8191cgd5850hds1zls88hkf9rb6qx1vqjv585aj0";
@ -10,6 +11,7 @@ stdenv.mkDerivation rec {
patches = [ ./configure-tmpdir.patch ];
buildInputs = [which];
propagatedBuildInputs = [diffutils gnupatch gnutar];
# Instead of GNU Autoconf, tla uses Tom Lord's now

View file

@ -1,13 +1,14 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng }:
stdenv.mkDerivation {
name = "dvdauthor-0.6.14";
src = args.fetchurl {
src = fetchurl {
url = mirror://sourceforge/dvdauthor/dvdauthor-0.6.14.tar.gz;
sha256 = "1x4flj3ja7m8rbc956a6ha3qk0k6zxd1y6sl826r6r7dyc91a6yx";
};
buildInputs =(with args; [imagemagick libdvdread libxml2 freetype fribidi libpng]);
buildInputs = [ imagemagick libdvdread libxml2 freetype fribidi libpng ];
meta = {
description = "Tools for generating DVD files to be played on standalone DVD players";

View file

@ -1,6 +1,7 @@
args: with args;
{ fetchurl, stdenv, texinfo }:
((import ./common.nix)
(args //
{ revision = 3;
sha256 = "0knrpkr74s8yn4xcqxkqpgxmzdmzrvahh1n1csqc1wwd2rb4vnpr"; }))
import ./common.nix {
inherit fetchurl stdenv texinfo;
revision = 3;
sha256 = "0knrpkr74s8yn4xcqxkqpgxmzdmzrvahh1n1csqc1wwd2rb4vnpr";
}

View file

@ -1,6 +1,7 @@
args: with args;
{ fetchurl, stdenv, texinfo }:
((import ./common.nix)
(args //
{ revision = 4;
sha256 = "02jgy0lvi5ymkdxwjasg50zl03zmyj8sgnfxxnjnbmif72c0k4p8"; }))
import ./common.nix {
inherit fetchurl stdenv texinfo;
revision = 4;
sha256 = "02jgy0lvi5ymkdxwjasg50zl03zmyj8sgnfxxnjnbmif72c0k4p8";
}

View file

@ -1,6 +1,7 @@
args: with args;
{ fetchurl, stdenv, texinfo }:
((import ./common.nix)
(args //
{ revision = 5;
sha256 = "1s2wcslwcgb9j89vjn7qs63qlnsv1481jaw1sgg33fgbgk6a8wrk"; }))
import ./common.nix {
inherit fetchurl stdenv texinfo;
revision = 5;
sha256 = "1s2wcslwcgb9j89vjn7qs63qlnsv1481jaw1sgg33fgbgk6a8wrk";
}

View file

@ -1,27 +1,29 @@
args: with args;
{ stdenv, fetchurl, wrapFonts }:
let
srcA=
fetchurl {
srcA = fetchurl {
url = http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts.tar.gz;
sha256 = "12hgizg25fzmk10wjl0c88x97h3pg5r9ga122s3y28wixz6x2bvh";
};
srcB=
fetchurl {
srcB = fetchurl {
url = http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts-asian.tar.gz;
sha256 = "0ibjy4xpz5j373hsdr8bx99czfpclqmviwwv768j8n7z12z3wa51";
};
srcC=
fetchurl {
srcC = fetchurl {
url = http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts-75dpi100dpi.tar.gz;
sha256 = "08vqr8yb636xa1s28vf3pm22dzkia0gisvsi2svqjqh4kk290pzh";
};
in
wrapFonts (stdenv.mkDerivation {
wrapFonts (stdenv.mkDerivation {
name = "ucs-fonts";
phases = ["installPhase"];
installPhase = ''
tar xf ${srcA}
tar xf ${srcB}
@ -32,7 +34,5 @@ wrapFonts (stdenv.mkDerivation {
meta = {
description = "Unicode bitmap fonts";
src = [srcA srcB srcC];
};
})

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "adobe-flex-sdk-4.0.0.14159-mpl";

View file

@ -1,9 +1,10 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "fpc-2.4.0-binary";
src = if stdenv.system == "i686-linux" then
src =
if stdenv.system == "i686-linux" then
fetchurl {
url = "ftp://ftp.chg.ru/pub/lang/pascal/fpc/dist/2.4.0/i386-linux/fpc-2.4.0.i386-linux.tar";
sha256 = "1zas9kp0b36zxqvb9i4idh2l0nb6qpmgah038l77w6las7ghh0dv";
@ -13,7 +14,7 @@ stdenv.mkDerivation {
url = "ftp://ftp.chg.ru/pub/lang/pascal/fpc/dist/2.4.0/x86_64-linux/fpc-2.4.0.x86_64-linux.tar";
sha256 = "111d11g5ra55hjywx64ldwwflpimsy8zryvap68v0309nyd23f0z";
}
else null;
else throw "Not supported on ${stdenv.system}.";
builder = ./binary-builder.sh;

View file

@ -1,8 +1,6 @@
args:
{ stdenv, fetchurl, gawk }:
if args ? startFPC && args.startFPC != null then
with args;
let startFPC = import ./binary.nix { inherit stdenv fetchurl; }; in
stdenv.mkDerivation rec {
version = "2.4.0";
@ -16,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ startFPC gawk ];
preConfigure =
if system == "i686-linux" || system == "x86_64-linux" then ''
if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then ''
sed -e "s@'/lib/ld-linux[^']*'@'''@" -i fpcsrc/compiler/systems/t_linux.pas
'' else "";
@ -38,5 +36,3 @@ stdenv.mkDerivation rec {
platforms = stdenv.lib.platforms.linux;
};
}
else (import ./default.nix (args // {startFPC = (import ./binary.nix args);}))

View file

@ -1,8 +1,9 @@
args: with args;
{ composableDerivation, fetchurl }:
let edf = composableDerivation.edf;
wwf = composableDerivation.wwf; in
composableDerivation.composableDerivation {} {
composableDerivation.composableDerivation {} {
name = "hugs98";
src = fetchurl {
@ -18,6 +19,7 @@ composableDerivation.composableDerivation {} {
postUnpack = ''
find -type f | xargs sed -i 's@/bin/cp@cp@';
'';
configurePhase = "./configure --prefix=\$out --enable-char-encoding=utf8 $configureFlags";
flags =
@ -39,16 +41,13 @@ composableDerivation.composableDerivation {} {
cfg = {
largeBannerSupport = true; # seems to be default
char = { cfgOption = "--enable-char-encoding"; blocks = "utf8"; };
utf8 = { cfgOption = "--enable-char-encoding=utf8"; blocks="char"; };
};
meta = {
license = "as-is"; # gentoo is calling it this way..
description = "The HUGS98 Haskell <interpreter";
description = "The HUGS 98 Haskell interpreter";
homepage = http://www.haskell.org/hugs;
};
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, x11 }:
stdenv.mkDerivation {
name = "ocaml-3.08.0";

View file

@ -1,16 +0,0 @@
args: with args;
stdenv.mkDerivation {
name = "ocaml-3.09.1";
builder = ./builder.sh;
src = fetchurl {
url = http://caml.inria.fr/pub/distrib/ocaml-3.09/ocaml-3.09.1.tar.gz;
md5 = "c73f4b093e27ba5bf13d62923f89befc";
};
configureScript = ./configure-3.09.1;
dontAddPrefix = "True";
configureFlags = ["-no-tk" "-x11lib" x11];
buildFlags = ["world" "bootstrap" "opt"];
checkTarget = ["opt.opt"];
buildInputs = [x11 ncurses];
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, x11, ncurses }:
stdenv.mkDerivation (rec {

View file

@ -1,11 +1,12 @@
args: with args;
{ stdenv, fetchurl, ncurses, x11 }:
let
useX11 = (stdenv.system != "armv5tel-linux");
useNativeCompilers = (stdenv.system != "armv5tel-linux");
useX11 = stdenv.system != "armv5tel-linux";
useNativeCompilers = stdenv.system != "armv5tel-linux";
inherit (stdenv.lib) optionals optionalString;
in
stdenv.mkDerivation (rec {
stdenv.mkDerivation rec {
name = "ocaml-3.11.1";
@ -49,4 +50,4 @@ stdenv.mkDerivation (rec {
'';
};
})
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl }:
# at runtime, need jre or jdk

View file

@ -1,18 +1,23 @@
args: with args;
{ stdenv, fetchurl, perl, gnum4, ncurses, openssl }:
let version = "R13B"; in
stdenv.mkDerivation {
name = "erlang-" + version;
src = fetchurl {
url = "http://www.erlang.org/download/otp_src_" + version + ".tar.gz";
sha256 = "112889v9axhrk9x9swcgql5kpj19p14504m06h4n7b99irzxf4rg";
};
buildInputs = [ perl gnum4 ncurses openssl ];
patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure '';
preConfigure = ''
export HOME=$PWD/../
sed -e s@/bin/pwd@pwd@g -i otp_build
'';
configureFlags = "--with-ssl=${openssl}";
}

View file

@ -1,18 +1,23 @@
args: with args;
{ stdenv, fetchurl, perl, gnum4, ncurses, openssl }:
let version = "R14A"; in
stdenv.mkDerivation {
name = "erlang-" + version;
src = fetchurl {
url = "http://www.erlang.org/download/otp_src_" + version + ".tar.gz";
sha256 = "170n5p6al1bxwngdmafm1c6892xjxppb96gzgki9gfb0mla6li73";
};
buildInputs = [ perl gnum4 ncurses openssl ];
patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure '';
preConfigure = ''
export HOME=$PWD/../
sed -e s@/bin/pwd@pwd@g -i otp_build
'';
configureFlags = "--with-ssl=${openssl}";
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, unzip }:
# at runtime, need jdk

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "jruby-1.1.6";
@ -7,11 +8,10 @@ stdenv.mkDerivation {
sha256 = "1q3cjshxk484i8gqxm682bxcrps7205nl9vlim4s6z827bjlmc4a";
};
buildInputs = [];
installPhase = '' ensureDir $out; cp -r * $out '';
meta = {
description = "ruby interpreter written in Java";
description = "Ruby interpreter written in Java";
homepage = http://jruby.codehaus.org/;
license = "CPL-1.0 GPL-2 LGPL-2.1"; # one of those
};

View file

@ -1,8 +1,9 @@
args: with args;
stdenv.mkDerivation {
name = "php-xdebug";
{ stdenv, fetchurl, php, autoconf, automake }:
src = args.fetchurl {
stdenv.mkDerivation {
name = "php-xdebug-2.0.5";
src = fetchurl {
url = "http://xdebug.org/files/xdebug-2.0.5.tgz";
sha256 = "1cmq7c36gj8n41mfq1wba5rij8j77yqhydpcsbcysk1zchg68f26";
};
@ -25,7 +26,7 @@ stdenv.mkDerivation {
'';
meta = {
description = "php debugger and profiler extension";
description = "PHP debugger and profiler extension";
homepage = http://xdebug.org/;
license = "xdebug"; # based on PHP-3
maintainers = [ stdenv.lib.maintainers.marcweber ];

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, builderDefs, python }:
let

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, builderDefs, python }:
let

View file

@ -1,7 +1,8 @@
args: with args;
{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
name = "spidermonkey-1.7";
src = fetchurl {
url = ftp://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz;
sha256 = "12v6v2ccw1y6ng3kny3xw0lfs58d1klylqq707k0x04m707kydj4";
@ -13,8 +14,12 @@ stdenv.mkDerivation rec {
makefileExtra = ./Makefile.extra;
makefile = "Makefile.ref";
patchPhase = "cat ${makefileExtra} >> ${makefile};
sed -e 's/ -ltermcap/ -lncurses/' -i ${makefile}";
patchPhase =
''
cat ${makefileExtra} >> ${makefile}
sed -e 's/ -ltermcap/ -lncurses/' -i ${makefile}
'';
makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1";
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, SDL, libogg, libvorbis }:
stdenv.mkDerivation rec {
pname = "SDL_mixer";

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, SDL }:
stdenv.mkDerivation rec {
pname = "SDL_net";

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, SDL, freetype }:
stdenv.mkDerivation {
name = "SDL_ttf-2.0.9";

View file

@ -1,6 +1,8 @@
# set VAMP_PATH ?
# plugins availible on sourceforge and http://www.vamp-plugins.org/download.html (various licenses)
args: with args;
{ stdenv, fetchurl, pkgconfig, libsndfile }:
rec {
vampSDK = stdenv.mkDerivation {
@ -17,8 +19,8 @@ rec {
description = "Audio processing plugin system for plugins that extract descriptive information from audio data";
homepage = http://sourceforge.net/projects/vamp;
license = "BSD";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
};

View file

@ -1,16 +1,15 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "babl-0.0.22";
src = args.fetchurl {
src = fetchurl {
url = ftp://ftp.gtk.org/pub/babl/0.0/babl-0.0.22.tar.bz2;
sha256 = "0v8gbf9si4sd06199f8lfmrsbvi6i0hxphd34kyvsj6g2kkkg10s";
};
buildInputs =(with args; []);
meta = {
description = "image pixel format coneversion libraray";
description = "Image pixel format conversion library";
homepage = http://gegl.org/babl/;
license = "GPL3";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pkgconfig }:
stdenv.mkDerivation {
name = "boolstuff-0.1.12";
@ -10,10 +11,10 @@ stdenv.mkDerivation {
buildInputs = [ pkgconfig ];
meta = {
description = "operations on boolean expression binary trees";
description = "Library for operations on boolean expression binary trees";
homepage = http://perso.b2b2c.ca/sarrazip/dev/boolstuff.html;
license = "GPL";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, commoncpp2 }:
stdenv.mkDerivation {
name = "ccrtp-1.7.1";
@ -13,7 +14,7 @@ stdenv.mkDerivation {
description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF";
homepage = "http://www.gnu.org/software/ccrtp/";
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, ilmbase }:
stdenv.mkDerivation {
name = "ctl-1.4.1";
@ -7,8 +8,12 @@ stdenv.mkDerivation {
sha256 = "16lzgbpxdyhykdwndj1i9vx3h4bfkxqqcrvasvgg70gb5raxj0mj";
};
patches = [ ./patch.patch ];
propagatedBuildInputs = [ ilmbase ];
configureFlags = "--with-ilmbase-prefix=${ilmbase}";
#configurePhase = "
#export CXXFLAGS=\"-I${ilmbase}/include -L${ilmbase}/lib\"
#echo $CXXFLAGS
@ -21,5 +26,4 @@ stdenv.mkDerivation {
license = "SOME OPEN SOURCE LICENSE"; # TODO which exactly is this?
};
patches = [ ./patch.patch ];
}

View file

@ -1,18 +1,19 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl, autoconf, automake, libtool }:
stdenv.mkDerivation {
name = "faac-1.26";
src = args.fetchurl {
src = fetchurl {
url = http://downloads.sourceforge.net/faac/faac-1.26.tar.gz;
sha256 = "0ld9d8mn3yp90japzkqkicmjcggi7d8y9gn7cl1jdsb74bif4j2b";
};
preConfigure = "./bootstrap";
buildInputs =(with args; [autoconf automake libtool]);
buildInputs = [ autoconf automake libtool ];
meta = {
description="open source MPEG-4 and MPEG-2 AAC encoder";
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
homepage = http://www.audiocoding.com/faac.html;
license = "LGPL";
};

View file

@ -1,15 +1,13 @@
args:
args.stdenv.mkDerivation rec {
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fcgi-2.4.0";
src = args.fetchurl {
name = name + ".tar.gz";
src = fetchurl {
url = http://www.fastcgi.com/dist/fcgi.tar.gz;
sha256 = "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36";
};
buildInputs =(with args; []);
meta = {
description = "FastCGI is a language independent, scalable, open extension to CG";
homepage = http://www.fastcgi.com/;

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, python, pkgconfig, glib }:
stdenv.mkDerivation rec {
name = "gamin-0.1.9";

View file

@ -1,12 +1,9 @@
args: with args;
let inherit (args.composableDerivation) composableDerivation edf wwf; in
composableDerivation {} ( fixed : {
{ stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
, postgresql, mysql, libgeotiff }:
composableDerivation.composableDerivation {} (fixed: {
name = "gdal-1.7.1";
src = fetchurl {
url = ftp://ftp.remotesensing.org/gdal/gdal171.zip;
md5 = "f5592cff69b239166c9b64ff81943b1a";
@ -27,75 +24,8 @@ composableDerivation {} ( fixed : {
"--with-geotiff=${libgeotiff}"
];
/* TODO
# --with-grass=ARG Include GRASS support (GRASS 5.7+, ARG=GRASS install tree dir)
# --with-libgrass=ARG Include GRASS support based on libgrass (GRASS 5.0+)
--with-cfitsio=ARG Include FITS support (ARG=no or libcfitsio path)
--with-pcraster=ARG Include PCRaster (libcsf) support (ARG=internal, no or path)
--with-netcdf=ARG Include netCDF support (ARG=no or netCDF tree prefix)
--with-png=ARG Include PNG support (ARG=internal, no or path)
--with-pcidsk=ARG Path to external PCIDSK SDK, or internal (default), or old
--with-libtiff=ARG Libtiff library to use (ARG=internal, yes or path)
--with-jpeg=ARG Include JPEG support (ARG=internal, no or path)
--without-jpeg12 Disable JPEG 8/12bit TIFF support
--with-gif=ARG Include GIF support (ARG=internal, no or path)
--with-ogdi=ARG Include OGDI support (ARG=path)
--with-fme=ARG Include FMEObjects support (ARG=FME_HOME path)
--with-hdf4=ARG Include HDF4 support (ARG=path)
--with-hdf5=ARG Include HDF5 support (ARG=path)
--with-jasper=ARG Include JPEG-2000 support via JasPer library (ARG=path)
--with-ecw=ARG Include ECW support (ARG=ECW SDK Path, yes or no)
--with-kakadu=ARG Include Kakadu/JPEG2000 support
--with-mrsid=ARG Include MrSID support (ARG=path to MrSID DSDK or no)
--with-jp2mrsid=ARG Enable MrSID JPEG2000 support (ARG=yes/no)
--with-msg=ARG Enable MSG driver (ARG=yes or no)
--without-bsb Disable BSB driver (legal issues pending
--with-oci=[ARG] use Oracle OCI API from given Oracle home
(ARG=path); use existing ORACLE_HOME (ARG=yes);
disable Oracle OCI support (ARG=no)
--with-oci-include=[DIR]
use Oracle OCI API headers from given path
--with-oci-lib=[DIR] use Oracle OCI API libraries from given path
--without-grib Disable GRIB driver
--without-ogr Don't build OGR into shared library
--with-ingres=ARG Include Ingres (ARG=$II_SYSTEM)
--with-xerces=[ARG] use Xerces C++ Parser from given prefix (ARG=path);
check standard prefixes (ARG=yes); disable (ARG=no)
--with-xerces-inc=[DIR] path to Xerces C++ Parser headers
--with-xerces-lib=[ARG] link options for Xerces C++ Parser libraries
--with-expat=[ARG] use Expat XML Parser from given prefix (ARG=path);
check standard prefixes (ARG=yes); disable (ARG=no)
--with-expat-inc=[DIR] path to Expat XML Parser headers
--with-expat-lib=[ARG] link options for Expat XML Parser libraries
--with-odbc=ARG Include ODBC support (ARG=no or path)
--with-dods-root=ARG Include DODS support (ARG=no or absolute path)
--with-curl=ARG Include curl (ARG=path to curl-config.)
--with-spatialite=ARG Include SpatiaLite support (ARG=no or path)
--with-sqlite3=[ARG] use SQLite 3 library [default=yes], optionally
specify the prefix for sqlite3 library
--with-dwgdirect=path Include DWG direct support
--with-dwg-plt=platform DWGdirect Platform, defaults to lnxX86
--with-idb=DIR Include Informix DataBlade support (DIR points to Informix root)
--with-sde=DIR Include ESRI SDE support (DIR is SDE's install dir).
--with-sde-version=VERSION NUMBER Set ESRI SDE version number (Default is 80).
--without-vfk Disable VFK support
--with-epsilon=ARG Include EPSILON support (ARG=no, yes or libepsilon install root path)
--with-geos=ARG Include GEOS support (ARG=yes, no or geos-config
path)
--without-pam Disable PAM (.aux.xml) support
--with-static-proj4=ARG Compile with PROJ.4 statically (ARG=no or path)
--with-gdal-ver=ARG Override GDAL version
--with-macosx-framework Build and install GDAL as a Mac OS X Framework
--with-perl Enable perl bindings
--with-php Enable php bindings
--with-ruby Enable Ruby bindings
--with-python Enable python bindings
--with-pymoddir=ARG Override Old-gen Python package install dir
*/
meta = {
description = "translator library for raster geospatial data formats";
description = "Translator library for raster geospatial data formats";
homepage = http://www.gdal.org/;
license = "X/MIT";
maintainers = [ stdenv.lib.maintainers.marcweber ];

View file

@ -1,16 +1,15 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "gmm-3.0";
src = args.fetchurl {
src = fetchurl {
url = http://download.gna.org/getfem/stable/gmm-3.0.tar.gz;
sha256 = "1lc34w68s0rhii6caklvq2pyc3jaa4g6kza948ya8ha6rr8d1ypp";
};
buildInputs =(with args; []);
meta = {
description = "generic C++ template library for sparse, dense and skyline matrices";
description = "Generic C++ template library for sparse, dense and skyline matrices";
homepage = http://home.gna.org/getfem/gmm_intro.html;
license = "LGLP2.1"; # or later
};

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, msilbc }:
stdenv.mkDerivation {
name = "ilbc-rfc3951";

View file

@ -1,10 +1,12 @@
args: with args;
{ stdenv, fetchurl, x11, libjpeg, libtiff, libungif, libpng, bzip2 }:
stdenv.mkDerivation {
name = "imlib2-1.3.0";
src = fetchurl {
url = mirror://sourceforge/enlightenment/imlib2-1.3.0.tar.gz;
sha256 = "1lrg7haqhmzpdb14cgp9vny5fanlwlyhf5n017v130in297gv1qj";
};
buildInputs = [ x11 libjpeg libtiff libungif libpng bzip2 ];
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, cfitsio, libusb, zlib }:
stdenv.mkDerivation {
name = "indilib-0.5";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec{
name = "iniparser-3.0b";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, libraw1394 }:
stdenv.mkDerivation {
name = "libavc1394-0.5.3";
@ -11,7 +12,7 @@ stdenv.mkDerivation {
propagatedBuildInputs = [ libraw1394 ];
meta = {
description = "programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set";
description = "Programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set";
homepage = http://sourceforge.net/projects/libavc1394/;
license = [ "GPL" "LGPL" ];
};

View file

@ -1,6 +1,8 @@
args: with args;
let inherit (args.composableDerivation) composableDerivation edf; in
composableDerivation {} {
{ composableDerivation, fetchurl }:
let inherit (composableDerivation) edf; in
composableDerivation.composableDerivation {} {
flags = { }
# TODO! implement flags
@ -14,15 +16,13 @@ composableDerivation {} {
name = "libdv-1.0.0";
src = args.fetchurl {
src = fetchurl {
url = mirror://sourceforge/libdv/libdv-1.0.0.tar.gz;
sha256 = "1fl96f2xh2slkv1i1ix7kqk576a0ak1d33cylm0mbhm96d0761d3";
};
meta = {
description = "software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards";
description = "Software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards";
homepage = http://sourceforge.net/projects/libdv/;
# you can choose one of the following licenses:
license = [];
};
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "libexif-0.6.16";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, libtiff }:
stdenv.mkDerivation {
name = "libgeotiff-1.2.4";
@ -10,7 +11,7 @@ stdenv.mkDerivation {
buildInputs = [ libtiff ];
meta = {
description = "library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
description = "Library implementing attempt to create a tiff based interchange format for georeferenced raster imagery";
homepage = http://www.remotesensing.org/geotiff/geotiff.html;
license = "X11";
maintainers = [stdenv.lib.maintainers.marcweber];

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, zlib, libpng }:
stdenv.mkDerivation {
name = "haru-2.1.0";
@ -15,7 +16,7 @@ stdenv.mkDerivation {
description = "cross platform, open source library for generating PDF files";
homepage = http://libharu.org/wiki/Main_Page;
license = "ZLIB/LIBPNG"; # see README.
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, libraw1394 }:
stdenv.mkDerivation rec {
version = "1.2.0";
name = "libiec61883-${version}";
@ -10,10 +11,10 @@ stdenv.mkDerivation rec {
};
buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libraw1394 ];
meta = {
description = "TODO";
homepage = http://www.linux1394.org;
license = "LGPL";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, zlib, libpng, libjpeg, lcms, automake, autoconf, libtool }:
stdenv.mkDerivation {
name = "libmng-1.0.10";
@ -7,18 +8,15 @@ stdenv.mkDerivation {
sha256 = "06415s40gz833s1v1q7c04c0m49p4sc87ich0vpdid2ldj0pf53v";
};
preConfigure = "
unmaintained/autogen.sh
#cp makefiles/makefile.linux Makefile
";
preConfigure = "unmaintained/autogen.sh";
buildInputs = [ zlib libpng libjpeg lcms automake autoconf libtool ];
meta = {
description = "THE reference library for reading, displaying, writing and examining Multiple-Image Network Graphics";
description = "Reference library for reading, displaying, writing and examining Multiple-Image Network Graphics";
homepage = http://sourceforge.net/projects/libmng;
license = "zlib/libpng";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libnova-0.12.1";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libraw1394-1.3.0";
@ -8,8 +9,8 @@ stdenv.mkDerivation rec {
};
meta = {
description = "library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
homepage = "http://www.linux1394.org";
description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
homepage = http://www.linux1394.org;
license = ["GPL" "LGPL"];
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, librdf_raptor, ladspaH, openssl, zlib }:
stdenv.mkDerivation {
name = "liblrdf-0.4.0";
@ -13,7 +14,7 @@ stdenv.mkDerivation {
description = "A lightweight RDF library with special support for LADSPA plugins.";
homepage = http://sourceforge.net/projects/lrdf/;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, libxml2, curl }:
stdenv.mkDerivation rec {
name = "raptor-1.4.21";
@ -7,15 +8,13 @@ stdenv.mkDerivation rec {
sha256 = "db3172d6f3c432623ed87d7d609161973d2f7098e3d2233d0702fbcc22cfd8ca";
};
buildInputs = [
#optional
libxml2 curl];
buildInputs = [ libxml2 curl ];
meta = {
description = "The RDF Parser Toolkit";
homepage = "http://librdf.org/raptor";
license = "LGPL-2.1 Apache-2.0";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, librdf_raptor, gmp, pkgconfig, pcre, libxml2 }:
stdenv.mkDerivation rec {
name = "rasqal-0.9.19";
@ -7,23 +8,17 @@ stdenv.mkDerivation rec {
sha256 = "a042846e8b7af52d9d66fba788c9d579e58c535cfaf80d33dc0bd69bf6ffeb08";
};
buildInputs = [
librdf_raptor
gmp /*or mpfr*/
pkgconfig
#optional
pcre libxml2
];
buildInputs = [ librdf_raptor gmp /*or mpfr*/ pkgconfig pcre libxml2 ];
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -lraptor"
'';
meta = {
description = "library that handles Resource Description Framework (RDF)";
description = "Library that handles Resource Description Framework (RDF)";
homepage = "http://librdf.org/rasqal";
license = "LGPL-2.1 Apache-2.0";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,23 +1,23 @@
args: with args;
stdenv.mkDerivation {
{ stdenv, fetchurl }:
name = "libsamplerate-0.1.2";
stdenv.mkDerivation rec {
name = "libsamplerate-0.1.7";
src = args.fetchurl {
url = http://www.mega-nerd.com/SRC/libsamplerate-0.1.2.tar.gz;
src = fetchurl {
url = "http://www.mega-nerd.com/SRC/${name}.tar.gz";
sha256 = "1m1iwzpcny42kcqv5as2nyb0ggrb56wzckpximqpp2y74dipdf4q";
};
buildInputs = ["pkgconfig"];
# maybe interesting configure flags:
#--disable-fftw disable usage of FFTW
#--disable-cpu-clip disable tricky cpu specific clipper
configurePhase = "
export LIBSAMPLERATE_CFLAGS=\"-I \$libsamplerate/include\"
export LIBSAMPLERATE_LIBS=\"-L \$libsamplerate/libs\"
./configure --prefix=\$out";
configurePhase =
''
export LIBSAMPLERATE_CFLAGS="-I $libsamplerate/include"
export LIBSAMPLERATE_LIBS="-L $libsamplerate/libs"
./configure --prefix=$out
'';
meta = {
description = "Sample Rate Converter for audio";

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libsigsegv-2.5";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, zlib, imagemagick, libpng, pkgconfig, glib, freetype
, libjpeg, libxml2 }:
stdenv.mkDerivation {
name = "libwmf-0.2.8.4";

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, commoncpp2, openssl, pkgconfig, ccrtp }:
stdenv.mkDerivation rec {
name = "libzrtpcpp-1.4.1";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann";
homepage = "http://www.gnutelephony.org/index.php/GNU_ZRTP";
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, cmake, alsaLib }:
stdenv.mkDerivation {
#The current release is still in a testing phase, though it should be stable
# (neither the ABI or API will break). Please try it out and let me know how it
@ -14,7 +15,7 @@ stdenv.mkDerivation {
buildInputs = [ cmake alsaLib ];
meta = {
description = "openal alternative";
description = "OpenAL alternative";
homepage = http://kcat.strangesoft.net/openal.html;
license = "GPL2";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "proj-4.5.0";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pth-2.0.7";
@ -8,7 +9,7 @@ stdenv.mkDerivation rec {
};
meta = {
description = "The GNU Portable Threads";
description = "The GNU Portable Threads library";
homepage = http://www.gnu.org/software/pth;
};
}

View file

@ -1,11 +1,14 @@
args: with args;
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "readline-5.2";
src = fetchurl {
url = mirror://gnu/readline/readline-5.2.tar.gz;
sha256 = "0icz4hqqq8mlkwrpczyaha94kns0am9z0mh3a2913kg2msb8vs0j";
};
propagatedBuildInputs = [ncurses];
patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch;
}

View file

@ -1,8 +1,10 @@
args: with args;
{ stdenv, fetchurl, cmake, rLang, zlib }:
stdenv.mkDerivation rec {
name = "biolib";
version = "0.0.1";
src = fetchurl {
url = "http://bio3.xparrot.eu/download/nix-biology/biolib-${version}.tar.gz";
sha256 = "1la639rs0v4f3ayvarqv0yxwlnwn188bb1v71d2ybw1xr6gdy688";
@ -12,9 +14,12 @@ stdenv.mkDerivation rec {
meta = {
description = "BioLib";
longDescription = ''BioLib brings together a set of opensource libraries
written in C/C++ and makes them available for major Bio* languages: BioPerl,
BioRuby, BioPython'';
longDescription =
''
BioLib brings together a set of opensource libraries written
in C/C++ and makes them available for major Bio* languages:
BioPerl, BioRuby, BioPython
'';
license = "GPL2";
homepage = http://biolib.open-bio.org/;
};

View file

@ -1,7 +1,8 @@
args: with args;
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation {
name = "atlas-3.9.11";
src = fetchurl {
url = mirror://sf/math-atlas/atlas3.9.11.tar.bz2;
sha256 = "d91e593a772cf540ff693f7d8c43d10c3037eb334c5c77572ea1b6a64a0b9677";

View file

@ -1,10 +1,12 @@
args: with args;
{ stdenv, fetchurl, libogg }:
stdenv.mkDerivation rec {
name = "speex-1.2rc1";
src = fetchurl {
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
sha256 = "19mpkhbz3s08snvndn0h1dk2j139max6b0rr86nnsjmxazf30brl";
};
buildInputs = [ libogg ];
}

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, loudmouth }:
stdenv.mkDerivation rec {
name = "telepathy-gabble-0.7.2";

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, dbus_glib, glib, python, pkgconfig, libxslt }:
stdenv.mkDerivation rec {
name = "telepathy-glib-0.7.0";

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, qt4, dbus, zlib, openssl, readline, perl }:
stdenv.mkDerivation {
name = "wvstreams-4.6.1";
@ -14,7 +15,7 @@ stdenv.mkDerivation {
buildInputs = [ qt4 dbus zlib openssl readline perl ];
meta = {
description = "network programming library in C++";
description = "Network programming library in C++";
homepage = http://alumnit.ca/wiki/index.php?page=WvStreams;
license = "LGPL";
maintainers = [ stdenv.lib.maintainers.marcweber ];

View file

@ -17,8 +17,6 @@ args.stdenv.mkDerivation {
sha256 = "058iv3vs6syy01pfkd5894xap9zakjx8ki1bpjdnihn6vk6fr80l";
};
buildInputs =(with args; []);
phases = "doAll";
# don't call any wired $buildInputs/nix-support/* scripts or such. This makes the build fail

View file

@ -1,17 +1,17 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation {
name = "avr8-burn-omat-2.0.1";
src = args.fetchurl {
src = fetchurl {
url = http://avr8-burn-o-mat.brischalle.de/AVR8_Burn-O-Mat_2_0_1.zip;
sha256 = "0nqlrbsx7z5r3b9y9wb6b7wawa3yxwx07zn7l4g4s59scxah2skk";
};
buildInputs =(with args; [unzip]);
buildInputs = [unzip];
phases = "unpackPhase installPhase";
# move to nix-support to not create that many symlinks..
# TODO burnomat tries to read /usr/local/etc/avrdude.conf (but you can edit it within the settings dialog)
installPhase = ''
@ -25,7 +25,7 @@ args.stdenv.mkDerivation {
'';
meta = {
description = "gui tool for avrdude (nice to set fuse bits)";
description = "GUI tool for avrdude";
homepage = http://avr8-burn-o-mat.brischalle.de/avr8_burn_o_mat_avrdude_gui_en.html;
license = "GPLv3";
};

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, unzip }:
# at runtime, need jdk

View file

@ -1,5 +1,7 @@
args: with args;
{ composableDerivation, fetchurl, yacc, flex, texLive }:
let edf = composableDerivation.edf; in
composableDerivation.composableDerivation {} {
name="avrdude-5.4";
@ -14,8 +16,7 @@ composableDerivation.composableDerivation {} {
flags =
edf { name = "doc"; enable = { buildInputs = texLive; configureFlags = ["--enable-doc"]; }; }
// edf { name = "parport"; }
;
// edf { name = "parport"; };
cfg = {
docSupport = false; # untested

View file

@ -1,19 +1,20 @@
args:
args.stdenv.mkDerivation {
{ stdenv, fetchurl, flex, bison }:
stdenv.mkDerivation {
name = "cproto-4.6";
src = args.fetchurl {
src = fetchurl {
url = mirror://sourceforge/cproto/cproto-4.6.tar.gz;
sha256 = "0ilhkx9iwc5bh65q47mf68p39iyk07d52fv00z431nl6qcb9hp9j";
};
buildInputs =(with args; [flex bison]);
buildInputs = [flex bison];
# patch made by Joe Khoobyar copied from gentoo bugs
patches = ./cproto_patch;
meta = {
description = "generate C function prototypes from C source code";
description = "Tool to generate C function prototypes from C source code";
homepage = http://cproto.sourceforge.net/;
license = "public domain";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "inotify-tools-3.13";
@ -7,13 +8,10 @@ stdenv.mkDerivation {
sha256 = "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6";
};
buildInputs = [];
meta = {
description = "";
homepage = http://sourceforge.net/projects/inotify-tools/;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,16 +1,15 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "uisp-20050207";
configureFlags="--disable-dependency-tracking";
src = fetchurl {
url = http://mirror.switch.ch/mirror/gentoo/distfiles/uisp-20050207.tar.gz;
sha256 = "1bncxp5yxh9r1yrp04vvhfiva8livi1pwic7v8xj99q09zrwahvw";
};
meta = {
description = "tool for AVR microcontrollers which can interface to many hardware in-system programmers";
description = "Tool for AVR microcontrollers which can interface to many hardware in-system programmers";
license = "GPL-2";
homepage = http://savannah.nongnu.org/projects/uisp;
};

View file

@ -1,11 +1,9 @@
args: with args;
{ stdenv, fetchurl, libusb }:
stdenv.mkDerivation {
name = "usb-modeswitch-1.1.2";
src =
fetchurl {
src =fetchurl {
url = "http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-1.1.2.tar.bz2";
sha256 = "1wzhd0r49nh5y43qrvsi3c7a29206zwd6v8xlpb8dqm40xg3j9nz";
};
@ -21,8 +19,6 @@ stdenv.mkDerivation {
buildInputs = [ libusb ];
meta = {
description = "...";
homepage = "TODO";
license = "GPLv2";
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;

View file

@ -1,7 +1,9 @@
# This package is only used to create the documentation of zsh-cvs
# eg have a look at http://www.zsh.org/mla/users/2008/msg00715.html
# latest release is newer though
args: with args;
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation {
name = "yodl-2.14.3";
@ -11,10 +13,13 @@ stdenv.mkDerivation {
url = "mirror://sourceforge/yodl/yodl_2.14.3.orig.tar.gz";
sha256 = "0paypm76p34hap3d18vvks5rrilchcw6q56rvq6pjf9raqw8ynd4";
};
patches = [(fetchurl {
patches =
[ (fetchurl {
url = "mirror://sourceforge/yodl/yodl_2.14.3-1.diff.gz";
sha256 = "176hlbiidv7p9051f04anzj4sr9dwlp9439f9mjvvgks47ac0qx4";
})];
})
];
# This doesn't isntall docs yet, do you need them?
installPhase = ''

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "byacc-1.9";
@ -7,11 +8,10 @@ stdenv.mkDerivation {
sha256 = "d61a15ac4ac007c188d0c0e99365f016f8d327755f43032b58e400754846f736";
};
preConfigure = [
preConfigure =
''mkdir -p $out/bin
sed -i "s@^DEST.*\$@DEST = $out/bin/yacc@" Makefile
''
];
'';
meta = {
description = "Berkeley YACC";

View file

@ -1,4 +1,4 @@
args: with args;
{ stdenv, fetchurl, rpm, cpio, zlib }:
assert stdenv.system == "x86_64-linux";
@ -25,6 +25,7 @@ then. I've tried that.
TODO tidy this all up. Find source instead of binary. Fix paths ... Find out how to check ink levels etc
*/
stdenv.mkDerivation {
name = "cups-gutenprint-binary-5.0.1";
@ -58,6 +59,6 @@ stdenv.mkDerivation {
'';
meta = {
description = "some additional drivers including canon printer drivers";
description = "Some additional CUPS drivers including Canon drivers";
};
}

View file

@ -1,12 +1,13 @@
# this package was called gimp-print in the past
{ fetchurl, stdenv, lib, pkgconfig, composableDerivation, cups
, libtiff, libpng, openssl, git, gimp }@args :
{ fetchurl, stdenv, pkgconfig, composableDerivation, cups
, libtiff, libpng, openssl, gimp }:
let
version = "5.2.4";
inherit (args.composableDerivation) composableDerivation edf wwf;
inherit (composableDerivation) edf wwf;
in
composableDerivation {} {
composableDerivation.composableDerivation {} {
name = "gutenprint-${version}";
src = fetchurl {
@ -18,9 +19,11 @@ composableDerivation {} {
buildInputs = [ openssl pkgconfig ];
configureFlags = ["--enable-static-genppd"];
#preConfigure = ''
# configureFlags="--with-cups=$out/usr-cups $configureFlags"
#'';
/*
is this recommended? without it this warning is printed:
@ -41,7 +44,7 @@ composableDerivation {} {
license = "GPL";
};
mergeAttrBy = { installArgs = lib.concat; };
mergeAttrBy = { installArgs = stdenv.lib.concat; };
# most interpreters aren't tested yet.. (see python for example how to do it)
flags =

View file

@ -1,13 +1,13 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "acpi-0.09";
src = fetchurl {
url = "http://grahame.angrygoats.net/source/acpi/${name}.tar.gz";
sha256 = "11iwzbm3gcn9ljvxl4cjj9fc1n135hx45rhrsprnnkqppndf3vn1";
};
meta = {
longDescription = ''
Linux ACPI client is a small command-line

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, fuse }:
stdenv.mkDerivation {
name = "afuse-0.2";
@ -10,15 +11,11 @@ stdenv.mkDerivation {
buildInputs = [ pkgconfig fuse ];
meta = {
description = "automounting in userspace. Allows easy access to ssh-agent etc";
longDesc = ''
Example: (automunt using sshfs by accessing ~/sshfs/[user@]domain
afuse -o mount_template="sshfs %r:/ %m" -o unmount_template="fusermount -u -z %m" ~/sshfs/
'';
description = "Automounter in userspace";
homepage = http://sourceforge.net/projects/afuse;
license = "GPL-v2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, autoconf, automake }:
stdenv.mkDerivation {
name = "bridge-utils-1.2";

View file

@ -1,9 +1,11 @@
args: with args;
stdenv.mkDerivation ( rec {
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "zd1211-firmware";
version = "1.4";
name = "${pname}-${version}";
src = fetchurl {
url = "http://surfnet.dl.sourceforge.net/sourceforge/zd1211/${name}.tar.bz2";
sha256 = "866308f6f59f7075f075d4959dff2ede47735c751251fecd1496df1ba4d338e1";
@ -18,4 +20,4 @@ stdenv.mkDerivation ( rec {
homepage = http://sourceforge.net/projects/zd1211/;
license = "GPL";
};
})
}

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, libxml2, pkgconfig, boolstuff, hal, dbus_glib }:
stdenv.mkDerivation {
name = "hal-evt-0.1.4";
@ -10,10 +11,10 @@ stdenv.mkDerivation {
buildInputs = [ libxml2 pkgconfig boolstuff hal dbus_glib ];
meta = {
description = "execute commands on hal events";
description = "Execute commands on hal events";
homepage = http://www.nongnu.org/halevt/;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -1,4 +1,6 @@
args: with args; stdenv.mkDerivation {
{ stdenv, fetchurl, pciutils }:
stdenv.mkDerivation {
name = "i810switch-0.6.5";
phases = "unpackPhase installPhase";
@ -10,15 +12,13 @@ args: with args; stdenv.mkDerivation {
make install DESTDIR=\${out}
";
inherit pciutils;
src = fetchurl {
url = http://www16.plala.or.jp/mano-a-mano/i810switch/i810switch-0.6.5.tar.gz;
sha256 = "d714840e3b14e1fa9c432c4be0044b7c008d904dece0d611554655b979cad4c3";
};
meta = {
description = "i810switch is a utility for switching the LCD and external VGA display.";
description = "A utility for switching between the LCD and external VGA display on Intel graphics cards";
homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html";
license = "GPL2";
};

View file

@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pciutils }:
stdenv.mkDerivation {
name = "radeontool-1.5";
@ -6,22 +7,22 @@ stdenv.mkDerivation {
# Don't know wether it's a good idea to hardcode the lspci path..
# But it will work on nix..
postUnpack = "
cd $sourceRoot;
sed -i \"s%lspci%\$pciutils/sbin/lspci%g\" radeontool.c
postUnpack = ''
cd $sourceRoot
sed -i "s%lspci%$pciutils/sbin/lspci%g" radeontool.c
cd ..
";
'';
src = fetchurl {
url = http://fdd.com/software/radeon/radeontool-1.5.tar.gz;
sha256 = "0qbkawhhq0y0gqbbql7q04y0v0hims5c4jkjsbc1y03rf9kr10ar";
};
installPhase = "
ensureDir \$out/bin
installPhase = ''
ensureDir $out/bin
chmod +x lightwatch.pl
cp radeontool lightwatch.pl \$out/bin
";
cp radeontool lightwatch.pl $out/bin
'';
meta = {
description = "Control the backlight and external video output of ATI Radeon Mobility graphics cards";

View file

@ -1,15 +0,0 @@
args: with args;
stdenv.mkDerivation {
name = "upstart-jobcontrol";
buildCommand = "
mkdir -p \$out/bin
echo '
file=/etc/event.d/\$1
shift
controlscript=\$(egrep exec\\|respawn \$file | tail | sed -e s/^\\\\s\\\\+//g | sed -e s/\\\\s\\\\+/\\ /g | cut -f 2 -d \\ )
echo Running \$controlscript \"\$@\"
\$controlscript \"\$@\"
' >\$out/bin/jobcontrol
chmod a+x \$out/bin/jobcontrol
";
}

Some files were not shown because too many files have changed in this diff Show more