mar1d: fix build
This commit is contained in:
parent
c8cacce22f
commit
49fb875eee
@ -12,7 +12,7 @@
|
||||
fetchpatch,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs:{
|
||||
pname = "MAR1D";
|
||||
version = "unstable-2023-02-02";
|
||||
|
||||
@ -23,6 +23,12 @@ stdenv.mkDerivation rec {
|
||||
owner = "Radvendii";
|
||||
};
|
||||
|
||||
env = {
|
||||
NIXPKGS_CFLAGS_COMPILE = toString [
|
||||
"-Wno-error=array-parameter"
|
||||
];
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
@ -45,7 +51,7 @@ stdenv.mkDerivation rec {
|
||||
})
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "First person Super Mario Bros";
|
||||
mainProgram = "MAR1D";
|
||||
longDescription = ''
|
||||
@ -55,8 +61,8 @@ stdenv.mkDerivation rec {
|
||||
You must view the world as mario does, as a one dimensional line.
|
||||
'';
|
||||
homepage = "https://mar1d.com";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ taeer ];
|
||||
platforms = platforms.unix;
|
||||
license = lib.licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ taeer ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user