Skip to content

Commit

Permalink
[staging-next] dev86: unstable-2022-07-19 -> 1.0.1 (#366951)
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz authored Dec 22, 2024
2 parents 9071e4c + 33ca23f commit d8b54e3
Showing 1 changed file with 15 additions and 19 deletions.
34 changes: 15 additions & 19 deletions pkgs/by-name/de/dev86/package.nix
Original file line number Diff line number Diff line change
@@ -1,35 +1,31 @@
{ lib
, stdenv
, fetchFromGitHub
{
lib,
stdenv,
fetchFromGitea,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "dev86";
version = "unstable-2022-07-19";
version = "1.0.1";

src = fetchFromGitHub {
src = fetchFromGitea {
domain = "codeberg.org";
owner = "jbruchon";
repo = "dev86";
rev = "f5cd3e5c17a0d3cd8298bac8e30bed6e59c4e57a";
hash = "sha256-CWeboFkJkpKHZ/wkuvMj5a+5qB2uzAtoYy8OdyYErMg=";
tag = "v${finalAttrs.version}";
hash = "sha256-xeOtESc0X7RZWCIpNZSHE8au9+opXwnHsAcayYLSX7w=";
};

makeFlags = [ "PREFIX=${placeholder "out"}" ];

# Parallel builds are not supported due to build process structure: tools are
# built sequentially in submakefiles and are reusing the same targets as
# dependencies. Building dependencies in parallel from different submakes is
# not synchronized and fails:
# make[3]: Entering directory '/build/dev86-0.16.21/libc'
# Unable to execute as86.
enableParallelBuilding = false;

meta = {
homepage = "https://github.com/jbruchon/dev86";
description =
"C compiler, assembler and linker environment for the production of 8086 executables";
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; [ AndersonTorres sigmasquadron ];
maintainers = with lib.maintainers; [
AndersonTorres
sigmasquadron
];
platforms = lib.platforms.linux;
};
})

0 comments on commit d8b54e3

Please sign in to comment.