mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +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" ```
65 lines
2.0 KiB
Nix
65 lines
2.0 KiB
Nix
{ lib, stdenv, fetchzip, fetchFromGitHub
|
|
, makeDesktopItem, copyDesktopItems
|
|
, cmake
|
|
, SDL2, SDL2_mixer, freepats
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "abuse";
|
|
version = "0.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Xenoveritas";
|
|
repo = "abuse";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-eneu0HxEoM//Ju2XMHnDMZ/igeVMPSLg7IaxR2cnJrk=";
|
|
};
|
|
|
|
data = fetchzip {
|
|
url = "http://abuse.zoy.org/raw-attachment/wiki/download/abuse-0.8.tar.gz";
|
|
hash = "sha256-SOrtBNLWskN7Tqa0B3+KjlZlqPjC64Jp02Pk7to2hFg=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
cp --reflink=auto -r ${finalAttrs.data}/data/sfx ${finalAttrs.data}/data/music data/
|
|
'';
|
|
|
|
desktopItems = [ (makeDesktopItem {
|
|
name = "abuse";
|
|
exec = "abuse";
|
|
icon = "abuse";
|
|
desktopName = "Abuse";
|
|
comment = "Side-scroller action game that pits you against ruthless alien killers";
|
|
categories = [ "Game" "ActionGame" ];
|
|
}) ];
|
|
|
|
postInstall = ''
|
|
mkdir $out/etc
|
|
echo -e "dir ${freepats}\nsource ${freepats}/freepats.cfg" > $out/etc/timidity.cfg
|
|
|
|
mv $out/bin/abuse $out/bin/.abuse-bin
|
|
substituteAll "${./abuse.sh}" $out/bin/abuse
|
|
chmod +x $out/bin/abuse
|
|
|
|
install -Dm644 ${finalAttrs.data}/doc/abuse.png $out/share/pixmaps/abuse.png
|
|
'';
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${lib.getDev SDL2}/include/SDL2";
|
|
|
|
nativeBuildInputs = [ copyDesktopItems cmake ];
|
|
buildInputs = [ SDL2 SDL2_mixer freepats ];
|
|
|
|
meta = {
|
|
description = "Side-scroller action game that pits you against ruthless alien killers";
|
|
homepage = "http://abuse.zoy.org/";
|
|
license = lib.licenses.unfree;
|
|
# Most of abuse is free (public domain, GPL2+, WTFPL), however the creator
|
|
# of its sfx and music only gave Debian permission to redistribute the
|
|
# files. Our friends from Debian thought about it some more:
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648272
|
|
maintainers = with lib.maintainers; [ iblech ];
|
|
platforms = lib.platforms.unix;
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
})
|