about summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-10 22:39:14 +0000
committerGitHub <noreply@github.com>2017-11-10 22:39:14 +0000
commit98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641 (patch)
treee3ee7ceaa2ba8a39362f85a6bbbb3d3cb5feb3a1 /pkgs/data/fonts
parent24e87b49b69eeceb35698c31fc78aa6c37c3a53f (diff)
parent5003f48eafeb2f6e3e75d9620efae69281179e03 (diff)
downloadnixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.tar
nixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.tar.gz
nixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.tar.bz2
nixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.tar.lz
nixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.tar.xz
nixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.tar.zst
nixlib-98fcc3bd5d5006d7f647ad0a449d1b1e7f7a8641.zip
Merge pull request #31461 from siddharthist/libertinus
libertinus: init at 6.4
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/libertinus/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/data/fonts/libertinus/default.nix b/pkgs/data/fonts/libertinus/default.nix
new file mode 100644
index 000000000000..b4ce653da637
--- /dev/null
+++ b/pkgs/data/fonts/libertinus/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "libertinus-${version}";
+  version = "6.4";
+
+  src = fetchFromGitHub {
+    rev    = "v${version}";
+    owner  = "khaledhosny";
+    repo   = "libertinus";
+    sha256 = "0acnq4vpplp2s7kdnhncz61diji3wmhca04g27yqpk03ahb40x9g";
+  };
+
+  installPhase = ''
+    mkdir -p $out/share/fonts/opentype/
+    mkdir -p $out/share/doc/${name}/
+    cp *.otf $out/share/fonts/opentype/
+    cp *.txt $out/share/doc/${name}/
+  '';
+
+  outputHashAlgo = "sha256";
+  outputHashMode = "recursive";
+  outputHash = "0yn526kwb4xjyf6gvf0wflqi45z5dlzicycz2q003a6if5fgqcz3";
+
+  meta = with stdenv.lib; {
+    description = "A fork of the Linux Libertine and Linux Biolinum fonts";
+    longDescription = ''
+      Libertinus fonts is a fork of the Linux Libertine and Linux Biolinum fonts
+      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;
+    license = licenses.ofl;
+    maintainers = with maintainers; [ siddharthist ];
+    platforms = platforms.all;
+  };
+}