b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
31 lines
696 B
Nix
31 lines
696 B
Nix
{ lib, stdenv, fetchFromSourcehut, installShellFiles, lua }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fennel";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~technomancy";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-TXmqvhT7Ab+S0UdLgl4xWrVvE//eCbu6qNnoxB7smE4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = [ lua ];
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
postInstall = ''
|
|
installManPage fennel.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Lua Lisp language";
|
|
homepage = "https://fennel-lang.org/";
|
|
license = licenses.mit;
|
|
platforms = lua.meta.platforms;
|
|
maintainers = [ maintainers.maaslalani ];
|
|
};
|
|
}
|