nixpkgs/pkgs/development/interpreters/falcon/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

23 lines
628 B
Nix

{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, zlib, sqlite }:
stdenv.mkDerivation rec {
name = "faclon-${version}";
version = "2013-09-19";
src = fetchFromGitHub {
owner = "falconpl";
repo = "falcon";
rev = "095141903c4ebab928ce803055f9bda363215c37";
sha256 = "1x3gdcz1gqhi060ngqi0ghryf69v8bn50yrbzfad8bhblvhzzdlf";
};
buildInputs = [ cmake pkgconfig pcre zlib sqlite ];
meta = with stdenv.lib; {
description = "Programming language with macros and syntax at once";
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}