mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
a13158505e
- finalAttrs - use fetchFromGitHub (since the url is deactivated) - strictDeps - no nested with
51 lines
1019 B
Nix
51 lines
1019 B
Nix
{
|
|
lib,
|
|
SDL2,
|
|
darwin,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
stdenv,
|
|
# Boolean flags
|
|
enableSdltest ? (!stdenv.isDarwin),
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "SDL2_net";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libsdl-org";
|
|
repo = "SDL_net";
|
|
rev = "release-${finalAttrs.version}";
|
|
hash = "sha256-sEcKn/apA6FcR7ijb7sfuvP03ZdVfjkNZTXsasK8fAI=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
SDL2
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.libobjc
|
|
];
|
|
|
|
propagatedBuildInputs = [ SDL2 ];
|
|
|
|
configureFlags = [
|
|
(lib.enableFeature false "examples") # can't find libSDL2_test.a
|
|
(lib.enableFeature enableSdltest "sdltest")
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/libsdl-org/SDL_net";
|
|
description = "SDL multiplatform networking library";
|
|
license = lib.licenses.zlib;
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
inherit (SDL2.meta) platforms;
|
|
};
|
|
})
|