lol

dancing-script: init at 2.0

Notes, version is coming from the .glyphs source file and is called
2.000 in the readme
https://raw.githubusercontent.com/impallari/DancingScript/master/sources/DancingScript.glyphs

+35
+6
maintainers/maintainer-list.nix
··· 13215 13215 githubId = 34962284; 13216 13216 name = "wchresta"; 13217 13217 }; 13218 + wdavidw = { 13219 + name = "David Worms"; 13220 + email = "david@adaltas.com"; 13221 + github = "wdavidw"; 13222 + githubId = 46896; 13223 + }; 13218 13224 wedens = { 13219 13225 email = "kirill.wedens@gmail.com"; 13220 13226 name = "wedens";
+27
pkgs/data/fonts/dancing-script/default.nix
··· 1 + { lib, fetchFromGitHub }: 2 + 3 + let 4 + pname = "dancing-script"; 5 + version = "2.0"; 6 + in fetchFromGitHub { 7 + name = "${pname}-${version}"; 8 + 9 + owner = "impallari"; 10 + repo = "DancingScript"; 11 + rev = "f7f54bc1b8836601dae8696666bfacd306f77e34"; 12 + sha256 = "dfFvh8h+oMhAQL9XKMrNr07VUkdQdxAsA8+q27KWWCA="; 13 + 14 + postFetch = '' 15 + tar xf $downloadedFile --strip=1 16 + install -m444 -Dt $out/share/fonts/truetype fonts/ttf/*.ttf 17 + ''; 18 + 19 + meta = with lib; { 20 + description = "Dancing Script"; 21 + longDescription = "A lively casual script where the letters bounce and change size slightly."; 22 + homepage = "https://github.com/impallari/DancingScript"; 23 + license = licenses.ofl; 24 + platforms = platforms.all; 25 + maintainers = with maintainers; [ wdavidw ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 2844 2844 2845 2845 damon = callPackage ../tools/admin/damon { }; 2846 2846 2847 + dancing-script = callPackage ../data/fonts/dancing-script { }; 2848 + 2847 2849 dante = callPackage ../servers/dante { }; 2848 2850 2849 2851 dapr-cli = callPackage ../development/tools/dapr/cli {};