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
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
gccStdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
zlib,
|
|
ncurses,
|
|
}:
|
|
|
|
let
|
|
stdenv = gccStdenv;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "aewan";
|
|
version = "1.0.01";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/aewan/${pname}-${version}.tar.gz";
|
|
sha256 = "5266dec5e185e530b792522821c97dfa5f9e3892d0dca5e881d0c30ceac21817";
|
|
};
|
|
|
|
patches = [
|
|
# Pull patch pending upstream inclusion:
|
|
# https://sourceforge.net/p/aewan/bugs/13/
|
|
(fetchpatch {
|
|
url = "https://sourceforge.net/p/aewan/bugs/13/attachment/aewan-cvs-ncurses-6.3.patch";
|
|
sha256 = "0pgpk1l3d6d5y37lvvavipwnmv9gmpfdy21jkz6baxhlkgf43r4p";
|
|
# patch is in CVS diff format, add 'a/' prefix
|
|
extraPrefix = "";
|
|
})
|
|
# https://sourceforge.net/p/aewan/bugs/14/
|
|
(fetchpatch {
|
|
url = "https://sourceforge.net/p/aewan/bugs/14/attachment/aewan-1.0.01-fix-incompatible-function-pointer-types.patch";
|
|
sha256 = "sha256-NlnsOe/OCMXCrehBq20e0KOMcWt5rUv9fIvu9eoOMqw=";
|
|
})
|
|
# https://sourceforge.net/p/aewan/bugs/16/
|
|
(fetchpatch {
|
|
url = "https://sourceforge.net/p/aewan/bugs/16/attachment/implicit-function-declaration.patch";
|
|
sha256 = "sha256-RWFJRDaYoiQySkB2L09JHSX90zgIJ9q16IrPhg03Ruc=";
|
|
# patch is in CVS diff format, add 'a/' prefix
|
|
extraPrefix = "";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
zlib
|
|
ncurses
|
|
];
|
|
|
|
meta = {
|
|
description = "Ascii-art Editor Without A Name";
|
|
homepage = "https://aewan.sourceforge.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|