4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip, fltk, zlib, xdg_utils, xorg, libjpeg, libGL }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "eureka-editor";
|
|
version = "1.21";
|
|
shortver = "121";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://sourceforge/eureka-editor/Eureka/${version}/eureka-${shortver}-source.tar.gz";
|
|
sha256 = "0fpj13aq4wh3f7473cdc5jkf1c71jiiqmjc0ihqa0nm3hic1d4yv";
|
|
};
|
|
|
|
buildInputs = [ fltk zlib xdg_utils libjpeg xorg.libXinerama libGL ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preBuild = ''
|
|
substituteInPlace src/main.cc \
|
|
--replace /usr/local $out
|
|
substituteInPlace Makefile \
|
|
--replace /usr/local $out \
|
|
--replace "-o root " ""
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin $out/share/applications $out/share/icons $out/man/man6
|
|
cp misc/eureka.desktop $out/share/applications
|
|
cp misc/eureka.ico $out/share/icons
|
|
cp misc/eureka.6 $out/man/man6
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://eureka-editor.sourceforge.net";
|
|
description = "A map editor for the classic DOOM games, and a few related games such as Heretic and Hexen";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
broken = stdenv.isDarwin;
|
|
maintainers = with maintainers; [ neonfuz ];
|
|
};
|
|
}
|