mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
36 lines
1.1 KiB
Nix
36 lines
1.1 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 = [ ];
|
|
};
|
|
}
|