Init at LinuxCNC 2.9-pre-f77537cd4d
This commit is contained in:
20
packages/readline_5/default.nix
Normal file
20
packages/readline_5/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user