mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
recursive: init at 1.022
This commit is contained in:
parent
1fb4a93c3a
commit
431038aa26
39
pkgs/data/fonts/recursive/default.nix
Normal file
39
pkgs/data/fonts/recursive/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "recursive";
|
||||
version = "1.022";
|
||||
|
||||
srcs = [
|
||||
(fetchzip {
|
||||
name = "${pname}";
|
||||
url = "https://github.com/arrowtype/recursive/releases/download/v${version}/recursive-beta_1_022.zip";
|
||||
sha256 = "09nr1fli7ksv8z4yb25c4xidwsqq50av18qrybsy4kqy5c22957v";
|
||||
stripRoot = false;
|
||||
})
|
||||
|
||||
(fetchzip {
|
||||
name = "${pname}-static";
|
||||
url = "https://github.com/arrowtype/recursive/releases/download/v${version}/recursive-static_fonts-b020.zip";
|
||||
sha256 = "1wlj113gjm26ra9y2r2b3syis2wx0mjq2m8i8xpwscp1kflma1r6";
|
||||
stripRoot = false;
|
||||
})
|
||||
];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/{opentype,truetype,woff2}
|
||||
find -name "*.otf" -exec cp "{}" $out/share/fonts/opentype \;
|
||||
find -name "*.ttf" -exec cp "{}" $out/share/fonts/truetype \;
|
||||
find -name "*.woff2" -exec cp "{}" $out/share/fonts/woff2 \;
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/arrowtype/recursive;
|
||||
description = "A variable font family for code & UI";
|
||||
license = licenses.ofl;
|
||||
maintainers = [ maintainers.eadwu ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -17581,6 +17581,8 @@ in
|
||||
|
||||
raleway = callPackage ../data/fonts/raleway { };
|
||||
|
||||
recursive = callPackage ../data/fonts/recursive { };
|
||||
|
||||
rictydiminished-with-firacode = callPackage ../data/fonts/rictydiminished-with-firacode { };
|
||||
|
||||
roboto = callPackage ../data/fonts/roboto { };
|
||||
|
Loading…
Reference in New Issue
Block a user