2014-09-23 21:51:50 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, zlib, sqlite }:
|
2009-07-09 22:30:19 +00:00
|
|
|
|
2014-09-23 21:51:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-15 21:47:07 +00:00
|
|
|
name = "falcon-${version}";
|
2014-09-23 21:51:50 +00:00
|
|
|
version = "2013-09-19";
|
2009-07-09 22:30:19 +00:00
|
|
|
|
2014-09-23 21:51:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "falconpl";
|
|
|
|
repo = "falcon";
|
|
|
|
rev = "095141903c4ebab928ce803055f9bda363215c37";
|
|
|
|
sha256 = "1x3gdcz1gqhi060ngqi0ghryf69v8bn50yrbzfad8bhblvhzzdlf";
|
|
|
|
};
|
2009-07-09 22:30:19 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake pcre zlib sqlite ];
|
2009-07-09 22:30:19 +00:00
|
|
|
|
2014-09-23 21:51:50 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Programming language with macros and syntax at once";
|
2014-09-23 21:51:50 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2009-07-09 22:30:19 +00:00
|
|
|
};
|
|
|
|
}
|