nixpkgs/pkgs/games/kabeljau/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenvNoCC, lib, fetchFromGitea, just, inkscape, makeWrapper, bash, dialog }:
stdenvNoCC.mkDerivation rec {
pname = "kabeljau";
version = "1.2.0";
src = fetchFromGitea {
domain = "codeberg.org";
2022-07-19 23:47:30 +00:00
owner = "annaaurora";
repo = "kabeljau";
rev = "v${version}";
sha256 = "sha256-RedVItgfr6vgqXHA3bOiHXDpfGuHI+sX4jCHL9G5jYk=";
};
# Inkscape is needed in a just recipe where it is used to export the SVG icon to several different sized PNGs.
nativeBuildInputs = [ just inkscape makeWrapper ];
postPatch = ''
patchShebangs --host ${pname}
substituteInPlace ./justfile \
--replace " /bin" " $out/bin" \
--replace " /usr" " $out"
'';
installPhase = ''
runHook preInstall
just install
wrapProgram $out/bin/${pname} --suffix PATH : ${
lib.makeBinPath [ dialog ]
}
runHook postInstall
'';
meta = with lib; {
description = "Survive as a stray cat in an ncurses game";
mainProgram = "kabeljau";
2022-07-19 23:47:30 +00:00
homepage = "https://codeberg.org/annaaurora/kabeljau";
license = licenses.lgpl3Only;
2022-07-19 23:47:30 +00:00
maintainers = with maintainers; [ annaaurora ];
};
}