571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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/";
|
|
};
|
|
|
|
}
|