about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2019-02-17 20:40:14 +0000
committerJörg Thalheim <joerg@thalheim.io>2019-02-17 20:40:14 +0000
commit0a393f53a9702cea04a6afea506c3a91a1a2bf60 (patch)
treee43588099d788e29feabbd32d64e99bd9db17186 /pkgs/data
parentc3778b342895c956b5b31e81e15b31cbb9238898 (diff)
downloadnixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.tar
nixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.tar.gz
nixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.tar.bz2
nixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.tar.lz
nixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.tar.xz
nixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.tar.zst
nixlib-0a393f53a9702cea04a6afea506c3a91a1a2bf60.zip
font-awesome: make font-awesome_5 the defautl
It is confusing that font-awesome_4 is the font,
one get when installing font-awesome-ttf.
I don't really see a use case to keep the old version around.
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/font-awesome-4/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/data/fonts/font-awesome-4/default.nix b/pkgs/data/fonts/font-awesome-4/default.nix
deleted file mode 100644
index 34548b972442..000000000000
--- a/pkgs/data/fonts/font-awesome-4/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, fetchzip }:
-
-let
-  version = "4.7.0";
-in fetchzip rec {
-  name = "font-awesome-${version}";
-
-  url = "https://github.com/FortAwesome/Font-Awesome/archive/v${version}.zip";
-
-  postFetch = ''
-    mkdir -p $out/share/fonts
-    unzip -j $downloadedFile Font-Awesome-${version}/fonts/fontawesome-webfont.ttf -d $out/share/fonts/truetype
-  '';
-
-  sha256 = "0w8y7gxbqiy444phg4jl89kc5hq3jffbkhab8p110qy9jx8s106s";
-
-  meta = with stdenv.lib; {
-    description = "Font Awesome - TTF font";
-    longDescription = ''
-      Font Awesome gives you scalable vector icons that can instantly be customized.
-      This package includes only the TTF font. For full CSS etc. see the project website.
-    '';
-    homepage = http://fortawesome.github.io/Font-Awesome/;
-    license = licenses.ofl;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ abaldeau ];
-  };
-}