Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
fetchFromBitbucket,
|
|
wrapQtAppsHook,
|
|
pkg-config,
|
|
qtbase,
|
|
qttools,
|
|
qtmultimedia,
|
|
zlib,
|
|
bzip2,
|
|
xxd,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "doomseeker";
|
|
version = "2023-08-09";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "Doomseeker";
|
|
repo = "doomseeker";
|
|
rev = "4cce0a37b134283ed38ee4814bb282773f9c2ed1";
|
|
hash = "sha256-J7gesOo8NUPuVaU0o4rCGzLrqr3IIMAchulWZG3HTqg=";
|
|
};
|
|
|
|
patches = [
|
|
./dont_update_gitinfo.patch
|
|
./add_gitinfo.patch
|
|
./fix_paths.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
cmake
|
|
qttools
|
|
pkg-config
|
|
xxd
|
|
];
|
|
buildInputs = [
|
|
qtbase
|
|
qtmultimedia
|
|
zlib
|
|
bzip2
|
|
];
|
|
|
|
hardeningDisable = lib.optional stdenv.hostPlatform.isDarwin "format";
|
|
|
|
# Doomseeker looks for the engines in the program directory
|
|
postInstall = ''
|
|
mv $out/bin/* $out/lib/doomseeker/
|
|
ln -s $out/lib/doomseeker/doomseeker $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://doomseeker.drdteam.org/";
|
|
description = "Multiplayer server browser for many Doom source ports";
|
|
mainProgram = "doomseeker";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
}
|