Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 32 lines 629 B view raw
1{ 2 stdenv, 3 lib, 4 callPackage, 5}: 6let 7 src = (callPackage ./sources.nix { }).stable; 8in 9stdenv.mkDerivation { 10 pname = "wine-fonts"; 11 inherit (src) version; 12 13 sourceRoot = "wine-${src.version}/fonts"; 14 inherit src; 15 16 installPhase = '' 17 install *.ttf -Dt $out/share/fonts/wine 18 ''; 19 20 meta = { 21 description = "Microsoft replacement fonts by the Wine project"; 22 homepage = "https://wiki.winehq.org/Create_Fonts"; 23 license = with lib.licenses; [ lgpl21Plus ]; 24 platforms = lib.platforms.all; 25 maintainers = with lib.maintainers; [ 26 avnik 27 raskin 28 bendlas 29 johnazoidberg 30 ]; 31 }; 32}