tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
slade: disable on AArch64
Wants SSE.
Nikolay Amiantov
7 years ago
325dece6
1890fe35
+2
-2
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
slade
default.nix
git.nix
+1
-1
pkgs/applications/misc/slade/default.nix
···
20
description = "Doom editor";
21
homepage = http://slade.mancubus.net/;
22
license = licenses.gpl2;
23
-
platforms = platforms.linux;
24
maintainers = with maintainers; [ abbradar ];
25
};
26
}
···
20
description = "Doom editor";
21
homepage = http://slade.mancubus.net/;
22
license = licenses.gpl2;
23
+
platforms = [ "x86_64-linux" "i686-linux" ];
24
maintainers = with maintainers; [ abbradar ];
25
};
26
}
+1
-1
pkgs/applications/misc/slade/git.nix
···
20
description = "Doom editor";
21
homepage = http://slade.mancubus.net/;
22
license = licenses.gpl2Plus;
23
-
platforms = platforms.linux;
24
maintainers = with maintainers; [ ertes ];
25
};
26
}
···
20
description = "Doom editor";
21
homepage = http://slade.mancubus.net/;
22
license = licenses.gpl2Plus;
23
+
platforms = [ "x86_64-linux" "i686-linux" ];
24
maintainers = with maintainers; [ ertes ];
25
};
26
}