Init at LinuxCNC 2.9-pre-f77537cd4d

This commit is contained in:
Matty Willoughby
2022-06-16 11:47:00 +08:00
commit 0f4aac93fa
19 changed files with 2154 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ fetchurl, stdenv, ncurses, lib }:
stdenv.mkDerivation rec {
pname = "readline";
version = "5.2";
src = fetchurl {
url = "mirror://gnu/readline/readline-${version}.tar.gz";
sha256 = "0icz4hqqq8mlkwrpczyaha94kns0am9z0mh3a2913kg2msb8vs0j";
};
propagatedBuildInputs = [ncurses];
patches = [ ./gnu_patches.patch ];
meta = with lib; {
branch = "5";
platforms = platforms.unix;
license = licenses.gpl2;
};
}