summary refs log tree commit diff
path: root/pkgs/data/fonts/redhat-liberation-fonts
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-12-13 12:54:38 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-12-18 10:10:36 -0500
commitb2c6efeaed7a5897de33dae7ab632b9b582f6a2f (patch)
tree939b5b1a29f6020a8dbb21b6d1ab56f8213fb70f /pkgs/data/fonts/redhat-liberation-fonts
parentec8d663d597204402a6deea6600a070870ecf2f7 (diff)
downloadnixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.tar
nixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.tar.gz
nixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.tar.bz2
nixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.tar.lz
nixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.tar.xz
nixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.tar.zst
nixpkgs-b2c6efeaed7a5897de33dae7ab632b9b582f6a2f.zip
liberation_ttf: drop binary packages
That means the following attributes are gone:
  - liberation_ttf_v1_binary
  - liberation_ttf_v2_binary

Because of this Libreoffice uses liberation source fonts

I've renamed these attributes because the binary form is gone:

  - liberation_ttf_v1_from_source -> liberation_ttf_v1
  - liberation_ttf_v2_from_source -> liberation_ttf_v2

They're aliases for these.
Diffstat (limited to 'pkgs/data/fonts/redhat-liberation-fonts')
-rw-r--r--pkgs/data/fonts/redhat-liberation-fonts/default.nix18
1 files changed, 2 insertions, 16 deletions
diff --git a/pkgs/data/fonts/redhat-liberation-fonts/default.nix b/pkgs/data/fonts/redhat-liberation-fonts/default.nix
index 88d438096c1..bd83e16b89c 100644
--- a/pkgs/data/fonts/redhat-liberation-fonts/default.nix
+++ b/pkgs/data/fonts/redhat-liberation-fonts/default.nix
@@ -49,21 +49,14 @@ let
     };
 
 in {
-  liberation_ttf_v1_from_source = common rec {
+  liberation_ttf_v1 = common rec {
     version = "1.07.4";
     url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-${version}.tar.gz";
     sha256 = "01jlg88q2s6by7qv6fmnrlx0lwjarrjrpxv811zjz6f2im4vg65d";
     nativeBuildInputs = [ fontforge ];
     outputHash = "1q102rmg4004p74f8m4y8a6iklmnva0q39sq260jsq3lhcfypg7p";
   };
-  liberation_ttf_v1_binary = common rec {
-    version = "1.07.4";
-    url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
-    sha256 = "0p7frz29pmjlk2d0j2zs5kfspygwdnpzxkb2hwzcfhrafjvf59v1";
-    nativeBuildInputs = [ ];
-    outputHash = "12gwb9b4ij9d93ky4c9ykgp03fqr62axy37pds88q7y6zgciwkab";
-  };
-  liberation_ttf_v2_from_source = common rec {
+  liberation_ttf_v2 = common rec {
     version = "2.00.1";
     url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-${version}.tar.gz";
     sha256 = "1ymryvd2nw4jmw4w5y1i3ll2dn48rpkqzlsgv7994lk6qc9cdjvs";
@@ -75,11 +68,4 @@ in {
     '';
     outputHash = "0nldgawm0a6lpn86w4w3rzx01ns3ph09ar1knq1g4jkxc8ci5rqn";
   };
-  liberation_ttf_v2_binary = common rec {
-    version = "2.00.1";
-    url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
-    sha256 = "010m4zfqan4w04b6bs9pm3gapn9hsb18bmwwgp2p6y6idj52g43q";
-    nativeBuildInputs = [ ];
-    outputHash = "19jky9li345zsig9pcb0rnlsjqqclh7r60vbi4pwh16f14850gpk";
-  };
 }