Merge remote-tracking branch 'origin/master' into staging.
Conflicts: pkgs/desktops/e18/enlightenment.nix
This commit is contained in:
@@ -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 = [ ];
|
||||
|
||||
26
pkgs/data/fonts/source-han-sans/base.nix
Normal file
26
pkgs/data/fonts/source-han-sans/base.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
6
pkgs/data/fonts/source-han-sans/japanese.nix
Normal file
6
pkgs/data/fonts/source-han-sans/japanese.nix
Normal 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";
|
||||
}
|
||||
6
pkgs/data/fonts/source-han-sans/korean.nix
Normal file
6
pkgs/data/fonts/source-han-sans/korean.nix
Normal 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";
|
||||
}
|
||||
6
pkgs/data/fonts/source-han-sans/simplified-chinese.nix
Normal file
6
pkgs/data/fonts/source-han-sans/simplified-chinese.nix
Normal 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";
|
||||
}
|
||||
6
pkgs/data/fonts/source-han-sans/traditional-chinese.nix
Normal file
6
pkgs/data/fonts/source-han-sans/traditional-chinese.nix
Normal 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";
|
||||
}
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user