mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
934 B
Nix
34 lines
934 B
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 = "";
|
|
})
|
|
];
|
|
|
|
buildInputs = [ zlib ncurses ];
|
|
|
|
meta = {
|
|
description = "Ascii-art Editor Without A Name";
|
|
homepage = "https://aewan.sourceforge.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|