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