summary refs log tree commit diff
path: root/pkgs/data/fonts/profont/default.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-05-18 14:57:53 -0500
committerGitHub <noreply@github.com>2019-05-18 14:57:53 -0500
commit872100cf4129758917dfef9c0ebe4d8e9fa1ce28 (patch)
tree60c4253aad76ebee41f6c32e39b616b4213a23c8 /pkgs/data/fonts/profont/default.nix
parentdbd1a4481fca373b4a13d052c7c45075d8d5f143 (diff)
parent888dba6a1d7c15eb6463abb991306105617671d8 (diff)
downloadnixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.tar
nixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.tar.gz
nixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.tar.bz2
nixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.tar.lz
nixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.tar.xz
nixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.tar.zst
nixpkgs-872100cf4129758917dfef9c0ebe4d8e9fa1ce28.zip
Merge branch 'staging' into release-cross-fixes
Diffstat (limited to 'pkgs/data/fonts/profont/default.nix')
-rw-r--r--pkgs/data/fonts/profont/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/fonts/profont/default.nix b/pkgs/data/fonts/profont/default.nix
index 0c6eede969f..c28c9283a9b 100644
--- a/pkgs/data/fonts/profont/default.nix
+++ b/pkgs/data/fonts/profont/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, fetchzip }:
+{ lib, fetchzip }:
 
 fetchzip rec {
   name = "profont";
 
-  url = "http://tobiasjung.name/downloadfile.php?file=profont-x11.zip";
+  url = "http://web.archive.org/web/20160707013914/http://tobiasjung.name/downloadfile.php?file=profont-x11.zip";
 
   postFetch = ''
     unzip -j $downloadedFile
@@ -19,10 +19,10 @@ fetchzip rec {
 
   sha256 = "1calqmvrfv068w61f614la8mg8szas6m5i9s0lsmwjhb4qwjyxbw";
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = http://tobiasjung.name;
     description = "A monospaced font created to be a most readable font for programming";
-    maintainers = with stdenv.lib.maintainers; [ myrl ];
+    maintainers = with lib.maintainers; [ myrl ];
     license = licenses.mit;
     platforms = platforms.all;
   };