My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/interpreters/regina/default.nix

24 lines
554 B

{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "Regina-REXX";
version = "3.9.1";
src = fetchurl {
url = "mirror://sourceforge/regina-rexx/regina-rexx/${version}/${pname}-${version}.tar.gz";
sha256 = "1vpksnjmg6y5zag9li6sxqxj2xapgalfz8krfxgg49vyk0kdy4sx";
};
buildInputs = [ ncurses ];
configureFlags = [
"--libdir=$(out)/lib"
];
meta = with lib; {
description = "REXX interpreter";
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
license = licenses.lgpl2;
};
}