summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2022-08-12 02:56:08 -0300
committerGitHub <noreply@github.com>2022-08-12 02:56:08 -0300
commit74a50898fdece3efe305386a07272fd09a1a26b4 (patch)
tree6fcb04f6b9eca3a05fbd882f3d5c9939174e7d58 /pkgs/data
parent0d038e3d00f336e7cc394341236d77d8e3686c2f (diff)
parentf81b9746801edfb04a4469cc3e350937244e2af7 (diff)
downloadnixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.tar
nixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.tar.gz
nixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.tar.bz2
nixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.tar.lz
nixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.tar.xz
nixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.tar.zst
nixpkgs-74a50898fdece3efe305386a07272fd09a1a26b4.zip
Merge pull request #186180 from AndersonTorres/remove-tarballs-nixos
Remove references to tarballs.nixos.org
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/fixedsys-excelsior/default.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/pkgs/data/fonts/fixedsys-excelsior/default.nix b/pkgs/data/fonts/fixedsys-excelsior/default.nix
index 8bdbc2d4c4f..cb9d5e73ed2 100644
--- a/pkgs/data/fonts/fixedsys-excelsior/default.nix
+++ b/pkgs/data/fonts/fixedsys-excelsior/default.nix
@@ -1,17 +1,12 @@
 { lib, fetchurl } :
 
 let
-  major = "3";
-  minor = "00";
-  version = "${major}.${minor}";
+  version = "3.00";
 in fetchurl rec {
   name = "fixedsys-excelsior-${version}";
 
-  urls = [
-    "http://www.fixedsysexcelsior.com/fonts/FSEX300.ttf"
-    "https://raw.githubusercontent.com/chrissimpkins/codeface/master/fonts/fixed-sys-excelsior/FSEX300.ttf"
-    "http://tarballs.nixos.org/sha256/6ee0f3573bc5e33e93b616ef6282f49bc0e227a31aa753ac76ed2e3f3d02056d"
-  ];
+  url = "https://raw.githubusercontent.com/chrissimpkins/codeface/master/fonts/fixed-sys-excelsior/FSEX300.ttf";
+
   downloadToTemp = true;
   recursiveHash = true;
   postFetch = ''
@@ -21,8 +16,8 @@ in fetchurl rec {
   sha256 = "32d6f07f1ff08c764357f8478892b2ba5ade23427af99759f34a0ba24bcd2e37";
 
   meta = {
-    description = "Pan-unicode version of Fixedsys, a classic DOS font";
     homepage = "http://www.fixedsysexcelsior.com/";
+    description = "Pan-unicode version of Fixedsys, a classic DOS font";
     platforms = lib.platforms.all;
     license = lib.licenses.publicDomain;
     maintainers = [ lib.maintainers.ninjatrappeur ];