nixpkgs/pkgs/development/compilers/gnu-cobol/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-09 05:10:29 +00:00
{ stdenv, fetchurl, gcc, makeWrapper
, db, gmp, ncurses }:
let
version = "2.2";
lib = stdenv.lib;
in
2017-05-09 05:10:29 +00:00
stdenv.mkDerivation rec {
pname = "gnu-cobol";
inherit version;
2017-05-09 05:10:29 +00:00
src = fetchurl {
url = "https://sourceforge.com/projects/open-cobol/files/gnu-cobol/${version}/gnucobol-${version}.tar.gz";
sha256 = "1jrjmdx0swssjh388pp08awhiisbrs2i7gx4lcm4p1k5rpg3hn4j";
2017-05-09 05:10:29 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ db gmp ncurses ];
cflags = stdenv.lib.concatMapStringsSep " " (p: "-L" + (lib.getLib p) + "/lib ") buildInputs;
ldflags = stdenv.lib.concatMapStringsSep " " (p: "-I" + (lib.getDev p) + "/include ") buildInputs;
cobolCCFlags = "-I$out/include ${ldflags} -L$out/lib ${cflags}";
2017-05-09 05:10:29 +00:00
postInstall = with stdenv.lib; ''
wrapProgram "$out/bin/cobc" \
--set COB_CC "${gcc}/bin/gcc" \
--prefix COB_LDFLAGS " " "${cobolCCFlags}" \
--prefix COB_CFLAGS " " "${cobolCCFlags}"
2017-05-09 05:10:29 +00:00
'';
meta = with stdenv.lib; {
description = "An open-source COBOL compiler";
homepage = "https://sourceforge.net/projects/open-cobol/";
2017-05-09 05:10:29 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ ericsagnes ];
2019-02-12 03:55:07 +00:00
platforms = with platforms; linux ++ darwin;
2017-05-09 05:10:29 +00:00
};
}