lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fontconfig-ultimate: 20141123 -> 2015-12-06

+12 -7
+12 -7
pkgs/development/libraries/fontconfig-ultimate/confd.nix
··· 1 - { stdenv, fetchurl }: 1 + { stdenv, fetchFromGitHub }: 2 2 3 + let version = "2015-12-06"; in 3 4 stdenv.mkDerivation { 4 - name = "fontconfig-ultimate-20141123"; 5 - src = fetchurl { 6 - url = "https://github.com/bohoomil/fontconfig-ultimate/archive/2014-11-23.tar.gz"; 7 - sha256 = "0czfm3hxc41x5mscwrba7p1vhm2w62j1qg7z8kfdrf21z8fvgznw"; 5 + name = "fontconfig-ultimate-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + sha256 = "02a811szxkq4q088nxfpdzp6rv0brvgkdhwigk09qffygxd776g6"; 9 + rev = version; 10 + repo = "fontconfig-ultimate"; 11 + owner = "bohoomil"; 8 12 }; 9 13 10 14 phases = "$prePhases unpackPhase installPhase $postPhases"; 15 + 11 16 installPhase = '' 12 17 mkdir -p $out/etc/fonts/conf.d 13 18 cp conf.d.infinality/*.conf $out/etc/fonts/conf.d ··· 22 27 rm $out/etc/fonts/conf.d/83-*.conf 23 28 24 29 # Inclusion of local and user configs handled by global configuration 25 - rm $out/etc/fonts/conf.d/97-local.conf 26 - rm $out/etc/fonts/conf.d/98-user.conf 30 + rm $out/etc/fonts/conf.d/29-local.conf 31 + rm $out/etc/fonts/conf.d/28-user.conf 27 32 28 33 cp fontconfig_patches/fonts-settings/*.conf $out/etc/fonts/conf.d 29 34