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
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeDesktopItem, ncurses, libX11, boost, cmake }:
|
|
|
|
let
|
|
pname = "tome2";
|
|
description = "A dungeon crawler similar to Angband, based on the works of Tolkien";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
desktopName = pname;
|
|
name = pname;
|
|
exec = "${pname}-x11";
|
|
icon = pname;
|
|
terminal = "false";
|
|
comment = description;
|
|
type = "Application";
|
|
categories = "Game;RolePlaying;";
|
|
genericName = pname;
|
|
fileValidation = false;
|
|
};
|
|
|
|
in stdenv.mkDerivation {
|
|
inherit pname;
|
|
version = "2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tome2";
|
|
repo = "tome2";
|
|
rev = "4e6a906c80ff07b75a6acf4ff585b47303805e46";
|
|
sha256 = "06bddj55y673d7bnzblk8n01z32l6k2rad3bpzr8dmw464hx4wwf";
|
|
};
|
|
|
|
buildInputs = [ ncurses libX11 boost ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [
|
|
"-DSYSTEM_INSTALL=ON"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/applications
|
|
cp ${desktopItem}/share/applications/*.desktop $out/share/applications
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit description;
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ cizra ];
|
|
platforms = platforms.all;
|
|
homepage = "https://github.com/tome2/tome2";
|
|
};
|
|
}
|