Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
866 B
Nix
37 lines
866 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dmsdos";
|
|
version = "unstable-2021-02-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sandsmark";
|
|
repo = "dmsdos";
|
|
rev = "c9044d509969d3d1467b781c08233e15c1da7a13";
|
|
hash = "sha256-oGVkDf1gFaSMRpvHq4GNLN8htBm/sYawZeVwiqQxjL8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
meta = {
|
|
description = "Linux utilities to handle dos/win95 doublespace/drivespace/stacker";
|
|
homepage = "https://github.com/sandsmark/dmsdos.git";
|
|
changelog = "https://github.com/sandsmark/dmsdos/blob/${finalAttrs.src.rev}/NEWS";
|
|
license = with lib.licenses; [
|
|
lgpl2
|
|
gpl2Plus
|
|
];
|
|
maintainers = with lib.maintainers; [ matthewcroughan ];
|
|
mainProgram = "dmsdos";
|
|
platforms = lib.platforms.all;
|
|
badPlatforms = lib.platforms.darwin;
|
|
};
|
|
})
|