mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 22:54:17 +00:00
![stuebinm](/assets/img/avatar_default.png)
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{ lib
|
|
, copyDesktopItems
|
|
, fetchFromGitHub
|
|
, love
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, stdenv
|
|
, strip-nondeterminism
|
|
, zip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mari0";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Stabyourself";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1zqaq4w599scsjvy1rsb21fd2r8j3srx9vym4ir9bh666dp36gxa";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
makeWrapper
|
|
strip-nondeterminism
|
|
zip
|
|
];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "mari0";
|
|
exec = pname;
|
|
comment = "Crossover between Super Mario Bros. and Portal";
|
|
desktopName = "mari0";
|
|
genericName = "mari0";
|
|
categories = [ "Game" ];
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
zip -9 -r mari0.love ./*
|
|
strip-nondeterminism --type zip mari0.love
|
|
install -Dm444 -t $out/share/games/lovegames/ mari0.love
|
|
makeWrapper ${love}/bin/love $out/bin/mari0 \
|
|
--add-flags $out/share/games/lovegames/mari0.love
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Crossover between Super Mario Bros. and Portal";
|
|
mainProgram = "mari0";
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
downloadPage = "https://stabyourself.net/mari0/";
|
|
};
|
|
|
|
}
|