679238e99b
Git log: https://codeberg.org/jbruchon/dev86/commits/branch/master The patch originally introduced in https://github.com/NixOS/nixpkgs/commit/036187d0a49977c6fb6177b9af579980a994a675 for C23 compatibility as well as several other fixes from the Debian package have been merged, so we update to grab those fixes.
30 lines
709 B
Nix
30 lines
709 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromCodeberg,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dev86";
|
|
version = "1.0.1-unstable-2026-05-15";
|
|
|
|
src = fetchFromCodeberg {
|
|
owner = "jbruchon";
|
|
repo = "dev86";
|
|
rev = "8cf785fc11516b31404ea6593d9fc5a411f59dad";
|
|
hash = "sha256-nY5awJzEO+xbJRAbeRJgKjJf30SNz2Bg346KMNDtmls=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = {
|
|
homepage = "https://codeberg.org/jbruchon/dev86";
|
|
description = "C compiler, assembler and linker environment for the production of 8086 executables";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [
|
|
sigmasquadron
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|