uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
22
pkgs/applications/emulators/wine/fonts.nix
Normal file
22
pkgs/applications/emulators/wine/fonts.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, lib, callPackage }:
|
||||
let src = (callPackage ./sources.nix {}).stable;
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "wine-fonts";
|
||||
inherit (src) version;
|
||||
|
||||
sourceRoot = "wine-${src.version}/fonts";
|
||||
inherit src;
|
||||
|
||||
installPhase = ''
|
||||
install *.ttf -Dt $out/share/fonts/wine
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Microsoft replacement fonts by the Wine project";
|
||||
homepage = "https://wiki.winehq.org/Create_Fonts";
|
||||
license = with lib.licenses; [ lgpl21Plus ];
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with lib.maintainers; [ avnik raskin bendlas johnazoidberg ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue