summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-10-20 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-10-20 04:20:00 +0000
commitbe1370a4d9bd368558d98daa0ee4ad0ae15aa7dc (patch)
tree43d2f9bbfbf4e1a6ff5c2e0d301e9a12c4619bdb
parentd76a91b1ba07288f25db65144ac89f3032b02d82 (diff)
downloadnixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.tar
nixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.tar.gz
nixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.tar.bz2
nixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.tar.lz
nixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.tar.xz
nixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.tar.zst
nixpkgs-be1370a4d9bd368558d98daa0ee4ad0ae15aa7dc.zip
source-code-pro: 2.030 -> 2.038
-rw-r--r--pkgs/data/fonts/source-code-pro/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/fonts/source-code-pro/default.nix b/pkgs/data/fonts/source-code-pro/default.nix
index c9518b78a65..eaf82d412a1 100644
--- a/pkgs/data/fonts/source-code-pro/default.nix
+++ b/pkgs/data/fonts/source-code-pro/default.nix
@@ -1,21 +1,21 @@
 { lib, fetchzip }:
 
 let
-  version = "2.030";
+  version = "2.038";
 in fetchzip {
   name = "source-code-pro-${version}";
 
-  url = "https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip";
+  url = "https://github.com/adobe-fonts/source-code-pro/releases/download/${version}R-ro%2F1.058R-it%2F1.018R-VAR/OTF-source-code-pro-${version}R-ro-1.058R-it.zip";
 
   postFetch = ''
     mkdir -p $out/share/fonts
     unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
   '';
 
-  sha256 = "0d8qwzjgnz264wlm4qim048z3236z4hbblvc6yplw13f6b65j6fv";
+  sha256 = "027cf62zj27q7l3d4sqzdfgz423lzysihdg8cvmkk6z910a1v368";
 
   meta = {
-    description = "A set of monospaced OpenType fonts designed for coding environments";
+    description = "Monospaced font family for user interface and coding environments";
     maintainers = with lib.maintainers; [ relrod ];
     platforms = with lib.platforms; all;
     homepage = "https://adobe-fonts.github.io/source-code-pro/";