Skip to content

Commit

Permalink
Merge pull request #74045 from marsam/add-rhodium-libre
Browse files Browse the repository at this point in the history
rhodium-libre: init at 1.2.0
  • Loading branch information
marsam committed Nov 26, 2019
2 parents ebce2e0 + 9b5f36b commit 0c3a28f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/data/fonts/rhodium-libre/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib, fetchFromGitHub }:

let
pname = "RhodiumLibre";
version = "1.2.0";
in fetchFromGitHub {
name = "${pname}-${version}";

owner = "DunwichType";
repo = pname;
rev = version;

postFetch = ''
tar xf $downloadedFile --strip=1
install -Dm444 -t $out/share/fonts/opentype/ RhodiumLibre-Regular.otf
install -Dm444 -t $out/share/fonts/truetype/ RhodiumLibre-Regular.ttf
'';

sha256 = "04ax6bri5vsji465806p8d7zbdf12r5bpvcm9nb8isfqm81ggj0r";

meta = with lib; {
description = "F/OSS/Libre font for Latin and Devanagari";
homepage = "https://github.com/DunwichType/RhodiumLibre";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17646,6 +17646,8 @@ in

recursive = callPackage ../data/fonts/recursive { };

rhodium-libre = callPackage ../data/fonts/rhodium-libre { };

rictydiminished-with-firacode = callPackage ../data/fonts/rictydiminished-with-firacode { };

roboto = callPackage ../data/fonts/roboto { };
Expand Down

0 comments on commit 0c3a28f

Please sign in to comment.