mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
Merge pull request #310649 from tomodachi94/enhance/discord-gamesdk/by-name-nixfmt
discord-gamesdk: modernize (move to by-name, format with nixfmt-rfc-style)
This commit is contained in:
commit
8e9745496f
@ -1,7 +1,8 @@
|
|||||||
{ lib
|
{
|
||||||
, stdenv
|
lib,
|
||||||
, fetchzip
|
stdenv,
|
||||||
, autoPatchelfHook
|
fetchzip,
|
||||||
|
autoPatchelfHook,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -14,7 +15,10 @@ stdenv.mkDerivation rec {
|
|||||||
stripRoot = false;
|
stripRoot = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [
|
||||||
|
"out"
|
||||||
|
"dev"
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ (stdenv.cc.cc.libgcc or null) ];
|
buildInputs = [ (stdenv.cc.cc.libgcc or null) ];
|
||||||
|
|
||||||
@ -41,6 +45,11 @@ stdenv.mkDerivation rec {
|
|||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
maintainers = with maintainers; [ tomodachi94 ];
|
maintainers = with maintainers; [ tomodachi94 ];
|
||||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||||
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "x86_64-windows" ];
|
platforms = [
|
||||||
|
"x86_64-linux"
|
||||||
|
"x86_64-darwin"
|
||||||
|
"aarch64-darwin"
|
||||||
|
"x86_64-windows"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -20566,8 +20566,6 @@ with pkgs;
|
|||||||
|
|
||||||
directfb = callPackage ../development/libraries/directfb { };
|
directfb = callPackage ../development/libraries/directfb { };
|
||||||
|
|
||||||
discord-gamesdk = callPackage ../development/libraries/discord-gamesdk { };
|
|
||||||
|
|
||||||
discord-rpc = callPackage ../development/libraries/discord-rpc {
|
discord-rpc = callPackage ../development/libraries/discord-rpc {
|
||||||
inherit (darwin.apple_sdk.frameworks) AppKit;
|
inherit (darwin.apple_sdk.frameworks) AppKit;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user