Merge remote-tracking branch 'origin/master' into staging

Conflicts:
	pkgs/stdenv/generic/default.nix
This commit is contained in:
Eelco Dolstra
2014-11-06 10:16:39 +01:00
232 changed files with 3422 additions and 1035 deletions

View File

@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
name = "aws-mturk-clt-1.3.0";
src = fetchurl {
url = "http://mturk.s3.amazonaws.com/CLTSource/${name}.tar.gz";
sha256 = "06p0cbb5afmqjjlibbw9gb08jp270c7j57lhnf9ld50sm1z021ln";
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = https://requester.mturk.com/developer;
description = "Command line tools for interacting with the Amazon Mechanical Turk";
license = "unfree-redistributable"; # Amazon http://aws.amazon.com/asl/
license = stdenv.lib.licenses.amazonsl;
longDescription =
''

View File

@@ -20,7 +20,7 @@ stdenv.mkDerivation {
meta = {
homepage = "https://github.com/clvv/fasd";
description = "quick command-line access to files and directories for POSIX shells";
license = "free"; # https://github.com/clvv/fasd/blob/master/LICENSE
license = stdenv.lib.licenses.free; # https://github.com/clvv/fasd/blob/master/LICENSE
longDescription = ''
Fasd is a command-line productivity booster.

View File

@@ -16,9 +16,9 @@ stdenv.mkDerivation {
makeFlags="DESTDIR=$out/bin MANDIR=$out/man/man6 DEFAULTFONTDIR=$out/share/figlet"
'';
meta = {
meta = {
description = "Program for making large letters out of ordinary text";
homepage = http://www.figlet.org/;
license = "AFL-2.1";
license = stdenv.lib.licenses.afl21;
};
}

View File

@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.flashrom.org";
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
license = "GPLv2";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.funfunctor ];
platforms = with stdenv.lib.platforms; linux;
};

View File

@@ -32,7 +32,7 @@ in buildPythonPackage rec {
project is inspired by tmuxinator and uses i3-py.
'';
homepage = https://github.com/carlesso/i3minator;
license = "WTFPL"; # http://sam.zoy.org/wtfpl/
license = stdenv.lib.licenses.wtfpl;
maintainers = with maintainers; [ iElectric ];
platforms = stdenv.lib.platforms.linux;
};

View File

@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://www.jgoodies.com/freeware/jdiskreport/;
description = "A graphical utility to visualize disk usage";
license = "unfree-redistributable"; #TODO freedist, libs under BSD-3
license = stdenv.lib.licenses.unfreeRedistributable; #TODO freedist, libs under BSD-3
};
}

View File

@@ -20,9 +20,9 @@ stdenv.mkDerivation {
mv {,$out/bin/}mysql2psql
'';
meta = {
meta = {
description = "converts mysql dump files to psql loadable files ";
homepage = http://pgfoundry.org/projects/mysql2pgsql/;
license = "BSD-Original";
license = stdenv.lib.licenses.bsdOriginal;
};
}

View File

@@ -22,7 +22,7 @@ stdenv.mkDerivation {
meta = {
homepage = http://www.microchip.com/pickit2;
license = "nonfree"; #MicroChip-PK2
license = stdenv.lib.licenses.unfree; #MicroChip-PK2
description = "Microchip PIC programming software for the PICKit2 programmer";
};
}

View File

@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://www.ivarch.com/programs/pv;
description = "Tool for monitoring the progress of data through a pipeline";
license = "Artistic-2";
license = stdenv.lib.licenses.artistic2;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};

View File

@@ -1,6 +1,6 @@
{ stdenv, fetchurl, sourceFromHead, apacheAnt, tomcat, jre }:
let
let
sources =
[ (fetchurl {
@@ -69,7 +69,7 @@ stdenv.mkDerivation {
homepage = http://dev.w3.org/cvsweb/2002/css-validator/;
# dependencies ship their own license files
# I think all .java files are covered by this license (?)
license = "w3c"; # http://www.w3.org/Consortium/Legal/
license = stdenv.lib.licenses.w3c;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
broken = true;

View File

@@ -3,9 +3,9 @@ x@{builderDefsPackage
, libSM, libXext
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x)
@@ -35,7 +35,7 @@ rec {
'' ["minInit" "defEnsureDir"];
goSrcDir = "cd X11";
meta = {
description = "A clock application that morphs digits when they are changed";
maintainers = with a.lib.maintainers;
@@ -44,7 +44,7 @@ rec {
];
platforms = with a.lib.platforms;
linux ++ freebsd;
license = "free"; #TODO BSD on Gentoo, looks like MIT
license = a.lib.licenses.free; #TODO BSD on Gentoo, looks like MIT
downloadPage = "http://www.jwz.org/xdaliclock/";
inherit version;
updateWalker = true;

View File

@@ -1,14 +1,14 @@
{ stdenv, fetchurl, python, zip }:
let
version = "2014.11.02.1";
version = "2014.11.04";
in
stdenv.mkDerivation rec {
name = "youtube-dl-${version}";
src = fetchurl {
url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "17k0vcggb75nyl8ikamvz0i8q1hqm84qii7fidvnzdcf2v6fakif";
sha256 = "073qnbl0lbv1pacqsdvccawlzgxs3kbayw3inlyqhr6xn3471jgk";
};
buildInputs = [ python ];
@@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.unlicense;
platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom ];
maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom AndersonTorres ];
};
}