Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / interpreters / falcon / default.nix
blobecac643f1ea961973e880c85330003e2985d1bdc
1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, pcre, zlib, sqlite }:
3 stdenv.mkDerivation {
4   pname = "falcon";
5   version = "2013-09-19";
7   src = fetchFromGitHub {
8     owner = "falconpl";
9     repo = "falcon";
10     rev = "095141903c4ebab928ce803055f9bda363215c37";
11     sha256 = "1x3gdcz1gqhi060ngqi0ghryf69v8bn50yrbzfad8bhblvhzzdlf";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
15   buildInputs = [ pcre zlib sqlite ];
17   meta = with lib; {
18     description = "Programming language with macros and syntax at once";
19     license = licenses.gpl2;
20     maintainers = with maintainers; [ pSub ];
21     platforms = with platforms; linux;
22   };