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
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, zip, love_11, lua, makeWrapper, makeDesktopItem }:
|
|
|
|
let
|
|
pname = "mari0";
|
|
version = "1.6.2";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "mari0";
|
|
exec = pname;
|
|
comment = "Crossover between Super Mario Bros. and Portal";
|
|
desktopName = "mari0";
|
|
genericName = "mari0";
|
|
categories = "Game";
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Stabyourself";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1zqaq4w599scsjvy1rsb21fd2r8j3srx9vym4ir9bh666dp36gxa";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ lua love_11 zip ];
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase =
|
|
''
|
|
mkdir -p $out/bin $out/share/games/lovegames $out/share/applications
|
|
zip -9 -r ${pname}.love ./*
|
|
mv ${pname}.love $out/share/games/lovegames/${pname}.love
|
|
makeWrapper ${love_11}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
|
chmod +x $out/bin/${pname}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Crossover between Super Mario Bros. and Portal";
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
downloadPage = "https://stabyourself.net/mari0/";
|
|
};
|
|
|
|
}
|