Merge branch 'staging-next' into staging
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl}:
|
||||
{ stdenv, lib, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "std-man-pages-4.4.0";
|
||||
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
|
||||
cp -R * $out/share/man
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "C++ STD manual pages";
|
||||
homepage = https://gcc.gnu.org/;
|
||||
license = "GPL/LGPL";
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
meta = with lib; {
|
||||
description = "GCC C++ STD manual pages";
|
||||
homepage = "https://gcc.gnu.org/";
|
||||
license = with licenses; [ fdl12Plus ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
26
pkgs/data/fonts/cnstrokeorder/default.nix
Normal file
26
pkgs/data/fonts/cnstrokeorder/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ lib, fetchurl }:
|
||||
|
||||
let
|
||||
version = "0.0.4.7";
|
||||
in fetchurl {
|
||||
name = "cnstrokeorder-${version}";
|
||||
|
||||
url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf";
|
||||
|
||||
recursiveHash = true;
|
||||
downloadToTemp = true;
|
||||
|
||||
postFetch = ''
|
||||
install -D $downloadedFile $out/share/fonts/truetype/CNstrokeorder-${version}.ttf
|
||||
'';
|
||||
|
||||
sha256 = "0cizgfdgbq9av5c8234mysr2q54iw9pkxrmq5ga8gv32hxhl5bx4";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Chinese font that shows stroke order for HSK 1-4";
|
||||
homepage = "http://rtega.be/chmn/index.php?subpage=68";
|
||||
license = [ licenses.arphicpl ];
|
||||
maintainers = with maintainers; [ johnazoidberg ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -1,23 +1,30 @@
|
||||
{ lib, fetchzip }:
|
||||
|
||||
let
|
||||
version = "20141012";
|
||||
version = "20170904";
|
||||
in fetchzip {
|
||||
name = "hanazono-${version}";
|
||||
|
||||
url = "mirror://sourceforgejp/hanazono-font/62072/hanazono-${version}.zip";
|
||||
url = "mirror://sourceforgejp/hanazono-font/68253/hanazono-${version}.zip";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts/hanazono $out/share/doc/hanazono
|
||||
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/hanazono
|
||||
mkdir -p $out/share/{doc,fonts}
|
||||
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
||||
unzip -j $downloadedFile \*.txt -d $out/share/doc/hanazono
|
||||
'';
|
||||
|
||||
sha256 = "0z0fgrjzp0hqqnhfisivciqpxd2br2w2q9mvxkglj44np2q889w2";
|
||||
sha256 = "0qiyd1vk3w8kqmwc6xi5d390wdr4ln8xhfbx3n8r1hhad9iz14p6";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Free kanji font containing 96,327 characters";
|
||||
homepage = http://fonts.jp/hanazono/;
|
||||
description = "Japanese Mincho-typeface TrueType font";
|
||||
homepage = "https://fonts.jp/hanazono/";
|
||||
longDescription = ''
|
||||
Hanazono Mincho typeface is a Japanese TrueType font that developed with a
|
||||
support of Grant-in-Aid for Publication of Scientific Research Results
|
||||
from Japan Society for the Promotion of Science and the International
|
||||
Research Institute for Zen Buddhism (IRIZ), Hanazono University. also with
|
||||
volunteers who work together on glyphwiki.org.
|
||||
'';
|
||||
|
||||
# Dual-licensed under OFL and the following:
|
||||
# This font is a free software.
|
||||
|
||||
26
pkgs/data/fonts/kanji-stroke-order-font/default.nix
Normal file
26
pkgs/data/fonts/kanji-stroke-order-font/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
let
|
||||
version = "4.002";
|
||||
in fetchzip {
|
||||
name = "kanji-stroke-order-font-${version}";
|
||||
|
||||
url = "https://sites.google.com/site/nihilistorguk/KanjiStrokeOrders_v${version}.zip?attredirects=0";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts/kanji-stroke-order $out/share/doc/kanji-stroke-order
|
||||
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/kanji-stroke-order
|
||||
unzip -j $downloadedFile \*.txt -d $out/share/doc/kanji-stroke-order
|
||||
'';
|
||||
|
||||
sha256 = "194ylkx5p7r1461wnnd3hisv5dz1xl07fyxmg8gv47zcwvdmwkc0";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Font containing stroke order diagrams for over 6500 kanji, 180 kana and other characters";
|
||||
homepage = "https://sites.google.com/site/nihilistorguk/";
|
||||
|
||||
license = [ licenses.bsd3 ];
|
||||
maintainers = with maintainers; [ ptrhlm ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -1,11 +1,11 @@
|
||||
{ lib, fetchFromGitHub }:
|
||||
|
||||
let
|
||||
version = "6.6";
|
||||
version = "6.8";
|
||||
in fetchFromGitHub rec {
|
||||
name = "libertinus-${version}";
|
||||
|
||||
owner = "khaledhosny";
|
||||
owner = "alif-type";
|
||||
repo = "libertinus";
|
||||
rev = "v${version}";
|
||||
|
||||
@@ -14,7 +14,7 @@ in fetchFromGitHub rec {
|
||||
install -m444 -Dt $out/share/fonts/opentype *.otf
|
||||
install -m444 -Dt $out/share/doc/${name} *.txt
|
||||
'';
|
||||
sha256 = "11pxb2zwvjlk06zbqrfv2pgwsl4awf68fak1ks4881i8xbl1910m";
|
||||
sha256 = "0iwbw3sw8rcsifpzw72g3cz0a960scv7cib8mwrw53282waqq2gc";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fork of the Linux Libertine and Linux Biolinum fonts";
|
||||
@@ -23,7 +23,7 @@ in fetchFromGitHub rec {
|
||||
that started as an OpenType math companion of the Libertine font family,
|
||||
but grown as a full fork to address some of the bugs in the fonts.
|
||||
'';
|
||||
homepage = https://github.com/khaledhosny/libertinus;
|
||||
homepage = https://github.com/alif-type/libertinus;
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ siddharthist ];
|
||||
platforms = platforms.all;
|
||||
|
||||
22
pkgs/data/fonts/redhat-official/default.nix
Normal file
22
pkgs/data/fonts/redhat-official/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ lib, fetchzip }:
|
||||
|
||||
let version = "2.2.0"; in
|
||||
fetchzip rec {
|
||||
name = "redhat-official-${version}";
|
||||
url = "https://github.com/RedHatOfficial/RedHatFont/archive/${version}.zip";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts/opentype
|
||||
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
||||
'';
|
||||
|
||||
sha256 = "0yb6shgq6jrv3kq9faky66qpdbv4g580c3jl942844grwyngymyj";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/RedHatOfficial/RedHatFont;
|
||||
description = "Red Hat's Open Source Fonts - Red Hat Display and Red Hat Text";
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
};
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{ fetchurl }:
|
||||
|
||||
fetchurl {
|
||||
url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/00d16ba60110e6956b6f7d31d520d0a34377b047.tar.gz";
|
||||
sha256 = "1f6d0a06g51r01mgg6fm9b8nd2bzkijf6jm6ljm5c62qgi4fkc7k";
|
||||
url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/85d71d5231521c70b961570dbbee953253fb379b.tar.gz";
|
||||
sha256 = "1mdp2ivnx7wvd63bq1li9gpsm5sv1s167crv1jjlqw578lbi8hv7";
|
||||
}
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mojave-gtk-theme";
|
||||
version = "2019-01-02";
|
||||
version = "2019-05-21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vinceliuice";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "053bfc5pslwpqhn05dzznh236g1z4cnn2dzwvb914f6m855fbxfg";
|
||||
rev = "f6167740b308715b38567ec660aa5241d964af1b";
|
||||
sha256 = "1k57f5vimdrciskjgxqz7k0xybc7b8pwcsii0p6kc8klmyrjrr9c";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk_engines ];
|
||||
|
||||
@@ -8,23 +8,26 @@
|
||||
, xfceSupport ? true
|
||||
, gtkNextSupport ? false
|
||||
, plankSupport ? false
|
||||
, steamSupport ? false
|
||||
, telegramSupport ? false
|
||||
, tweetdeckSupport ? false
|
||||
, tweetdeckSupport ? false, zip ? null
|
||||
, selectionColor ? null # Primary color for 'selected-items' (Default: #3F51B5 = Indigo500)
|
||||
, accentColor ? null # Secondary color for notifications and OSDs (Default: #7986CB = Indigo300)
|
||||
, suggestionColor ? null # Secondary color for 'suggested' buttons (Default: #673AB7 = DPurple500)
|
||||
, destructionColor ? null # Tertiary color for 'destructive' buttons (Default: #F44336 = Red500)
|
||||
}:
|
||||
|
||||
assert tweetdeckSupport -> zip != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "plata-theme-${version}";
|
||||
version = "0.7.6";
|
||||
version = "0.8.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "tista500";
|
||||
repo = "plata-theme";
|
||||
rev = version;
|
||||
sha256 = "1jllsl2h3zdvlp3k2dy3h4jyccrzzymwbqz43jhnm6mxxabxzijg";
|
||||
sha256 = "10xvfrc945zqlgzlx8zjyg0gnkwmq9vfjk0yqjy3gg62i65s8sch";
|
||||
};
|
||||
|
||||
preferLocalBuild = true;
|
||||
@@ -37,7 +40,8 @@ stdenv.mkDerivation rec {
|
||||
inkscape
|
||||
libxml2
|
||||
gnome2.glib.dev
|
||||
];
|
||||
]
|
||||
++ stdenv.lib.optional tweetdeckSupport zip;
|
||||
|
||||
buildInputs = [
|
||||
gdk_pixbuf
|
||||
@@ -62,6 +66,7 @@ stdenv.mkDerivation rec {
|
||||
(enableFeature xfceSupport "xfce")
|
||||
(enableFeature gtkNextSupport "gtk_next")
|
||||
(enableFeature plankSupport "plank")
|
||||
(enableFeature steamSupport "airforsteam")
|
||||
(enableFeature telegramSupport "telegram")
|
||||
(enableFeature tweetdeckSupport "tweetdeck")
|
||||
]
|
||||
@@ -70,6 +75,13 @@ stdenv.mkDerivation rec {
|
||||
++ (withOptional suggestionColor "suggestion_color")
|
||||
++ (withOptional destructionColor "destruction_color");
|
||||
|
||||
postInstall = ''
|
||||
for dest in $out/share/gtksourceview-{3.0,4}/styles; do
|
||||
mkdir -p $dest
|
||||
cp $out/share/themes/Plata-{Noir,Lumine}/gtksourceview/*.xml $dest
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Gtk+ theme based on Material Design Refresh";
|
||||
homepage = https://gitlab.com/tista500/plata-theme;
|
||||
|
||||
27
pkgs/data/themes/stilo/default.nix
Normal file
27
pkgs/data/themes/stilo/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk_pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stilo-themes";
|
||||
version = "3.32-3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lassekongo83";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0xcndr5mfa91f0ln0az3m79pidjy882v65w5fi5w05kykrmvv81z";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja sassc ];
|
||||
|
||||
buildInputs = [ gdk_pixbuf librsvg gtk_engines ];
|
||||
|
||||
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Minimalistic GTK themes";
|
||||
homepage = https://github.com/lassekongo83/stilo-themes;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.romildo ];
|
||||
};
|
||||
}
|
||||
@@ -1,25 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub, gdk_pixbuf, librsvg, gtk-engine-murrine }:
|
||||
{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk_pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zuki-themes";
|
||||
version = "3.32-1";
|
||||
version = "3.32-4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lassekongo83";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0x6ghc7n5y7p0agm2yp7rygz9154f58s891zxzhd07wc2c4mzp0s";
|
||||
sha256 = "0kqhk9qy5hwsd6g0bmq2dg6yj9gbv7l514ripsfiqyllmf4h818h";
|
||||
};
|
||||
|
||||
buildInputs = [ gdk_pixbuf librsvg ];
|
||||
nativeBuildInputs = [ meson ninja sassc ];
|
||||
|
||||
buildInputs = [ gdk_pixbuf librsvg gtk_engines ];
|
||||
|
||||
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||||
|
||||
installPhase = ''
|
||||
install -dm 755 $out/share/themes
|
||||
cp -a Zuki* $out/share/themes/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Themes for GTK3, gnome-shell and more";
|
||||
homepage = https://github.com/lassekongo83/zuki-themes;
|
||||
|
||||
Reference in New Issue
Block a user