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

Conflicts:
	pkgs/desktops/e18/enlightenment.nix
This commit is contained in:
Peter Simons
2014-08-04 16:51:47 +02:00
1261 changed files with 4697 additions and 3318 deletions

View File

@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://www.gnu.org/software/freefont/;
license = "GPLv3+";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
maintainers = [ ];

View File

@@ -0,0 +1,26 @@
{version ? "1.000", prefix, url, sha256, description}:
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation rec {
inherit version;
name = "${prefix}-${version}";
src = fetchurl {
inherit url sha256;
};
buildInputs = [ unzip ];
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp $( find . -name '*.otf' ) $out/share/fonts/truetype
'';
meta = {
inherit description;
homepage = http://sourceforge.net/adobe/source-han-sans/;
license = stdenv.lib.licenses.asl20;
};
}

View File

@@ -0,0 +1,6 @@
import ./base.nix {
prefix = "source-han-sans-japanese";
url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansJP-1.000.zip";
sha256 = "c5930036660bea22ffceaa9e2df765776494800d330a59be7936ab3c763c4c82";
description = "Japanese subset of an open source Pan-CJK typeface";
}

View File

@@ -0,0 +1,6 @@
import ./base.nix {
prefix = "source-han-sans-korean";
url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansKR-1.000.zip";
sha256 = "8eed4ad092fcf640e44f73ba510e0ed1c1cabf79776f68d02820734bbba21cf8";
description = "Korean subset of an open source Pan-CJK typeface";
}

View File

@@ -0,0 +1,6 @@
import ./base.nix {
prefix = "source-han-sans-simplified-chinese";
url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansCN-1.000.zip";
sha256 = "88117aa8f8b4ab65d6f7a919a5e1b06d6c00f75b1abecccf120246536123754d";
description = "Simplified Chinese subset of an open source Pan-CJK typeface";
}

View File

@@ -0,0 +1,6 @@
import ./base.nix {
prefix = "source-han-sans-traditional-chinese";
url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansTWHK-1.000.zip";
sha256 = "2371a726757a51322243b1ed7a9fde562621b0813b5e6d6443e06847ad7bbd20";
description = "Traditional Chinese subset of an open source Pan-CJK typeface";
}

View File

@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "cacert-20131205";
name = "cacert-20140704";
src = fetchurl {
url = "http://tarballs.nixos.org/${name}.pem.bz2";
sha256 = "049cm3nrhawkh9xpfjhgis6w58zji5ppi4d9yyjzrr7mpw0a34df";
sha256 = "05ymb7lrxavscbpx5xywlbya9q66r26fbngfif6zrvfpf3qskiza";
};
unpackPhase = "true";

View File

@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://www.gnu.org/software/miscfiles/;
license = "GPLv2+";
license = stdenv.lib.licenses.gpl2Plus;
description = "Collection of files not of crucial importance for sysadmins";
};
}