mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
28 lines
788 B
Nix
28 lines
788 B
Nix
{ lib, gccStdenv, fetchFromGitHub, cmake, pkg-config, pcre, zlib, sqlite }:
|
|
|
|
gccStdenv.mkDerivation {
|
|
pname = "falcon";
|
|
version = "unstable-2018-10-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "falconpl";
|
|
repo = "falcon";
|
|
rev = "637e2d5cd950a874496042993c02ab7d17c1b688";
|
|
sha256 = "iCyvvZJjXb1CR396EJ6GiP6d4e7iAc6QQlAOQoAfehg=";
|
|
};
|
|
|
|
# -Wnarrowing is enabled by default in recent GCC versions,
|
|
# causing compilation to fail.
|
|
NIX_CFLAGS_COMPILE = "-Wno-narrowing";
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ pcre zlib sqlite ];
|
|
|
|
meta = with lib; {
|
|
description = "Programming language with macros and syntax at once";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|