at 18.09-beta 23 lines 655 B view raw
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 nativeBuildInputs = [ pkgconfig ]; 15 buildInputs = [ cmake pcre zlib sqlite ]; 16 17 meta = with stdenv.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 }; 23}