depot/third_party/nixpkgs/pkgs/development/libraries/libantlr3c/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
542 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libantlr3c-3.4";
src = fetchurl {
url = "https://www.antlr3.org/download/C/libantlr3c-3.4.tar.gz";
sha256 ="0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa";
};
configureFlags = stdenv.lib.optional stdenv.is64bit "--enable-64bit";
meta = with stdenv.lib; {
description = "C runtime libraries of ANTLR v3";
homepage = "https://www.antlr3.org/";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ vbgl ];
};
}