mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
8ef2b87e00
- finalAttrs - strictDeps
30 lines
708 B
Nix
30 lines
708 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "mednafen-server";
|
|
version = "0.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://mednafen.github.io/releases/files/mednafen-server-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-uJmxaMW+bydfAXq8XDOioMoBOLUsi5OT2Tpbbotsp3Y=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
postInstall = ''
|
|
install -m 644 -Dt $out/share/mednafen-server standard.conf
|
|
'';
|
|
|
|
meta = {
|
|
description = "Netplay server for Mednafen";
|
|
mainProgram = "mednafen-server";
|
|
homepage = "https://mednafen.github.io/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|