about summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-25 07:37:30 -0500
committerWill Dietz <w@wdtz.org>2019-03-25 07:42:27 -0500
commit1d4ce7aef289e308554c9c04f5f50df641fab3dc (patch)
tree54c3135a137bda27ea2b484559ce3701e8755dc1 /pkgs/data/fonts
parent83cb84ebc3c84a4f3192edee58541bffc592f04c (diff)
downloadnixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.tar
nixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.tar.gz
nixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.tar.bz2
nixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.tar.lz
nixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.tar.xz
nixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.tar.zst
nixlib-1d4ce7aef289e308554c9c04f5f50df641fab3dc.zip
manrope: init at 3
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/manrope/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/data/fonts/manrope/default.nix b/pkgs/data/fonts/manrope/default.nix
new file mode 100644
index 000000000000..1fdf88b79abe
--- /dev/null
+++ b/pkgs/data/fonts/manrope/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "manrope";
+  version = "3";
+  src = fetchFromGitHub {
+    owner = "sharanda";
+    repo = pname;
+    rev = "3bd68c0c325861e32704470a90dfc1868a5c37e9";
+    sha256 = "1k6nmczbl97b9j2a8vx6a1r3q4gd1c2qydv0y9gn8xyl7x8fcvhs";
+  };
+  dontBuild = true;
+  installPhase = ''
+    install -Dm644 -t $out/share/fonts/opentype "desktop font"/*
+  '';
+  meta = with stdenv.lib; {
+    description = "Open-source modern sans-serif font family";
+    homepage = https://github.com/sharanda/manrope;
+    license = licenses.ofl;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}