1{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, zlib, sqlite }:
2
3stdenv.mkDerivation rec {
4 name = "falcon-${version}";
5 version = "2013-09-19";
6
7 src = fetchFromGitHub {
8 owner = "falconpl";
9 repo = "falcon";
10 rev = "095141903c4ebab928ce803055f9bda363215c37";
11 sha256 = "1x3gdcz1gqhi060ngqi0ghryf69v8bn50yrbzfad8bhblvhzzdlf";
12 };
13
14 buildInputs = [ cmake pkgconfig pcre zlib sqlite ];
15
16 meta = with stdenv.lib; {
17 description = "Programming language with macros and syntax at once";
18 license = licenses.gpl2;
19 maintainers = with maintainers; [ pSub ];
20 platforms = with platforms; linux;
21 };
22}