nixpkgs/pkgs/by-name/ju/juniper/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.2 KiB
Nix
Raw Normal View History

{
lib,
fetchFromGitHub,
buildDotnetModule,
dotnetCorePackages,
}:
2021-04-11 18:51:54 +00:00
buildDotnetModule rec {
2021-04-11 18:51:54 +00:00
pname = "juniper";
version = "4.0.0";
2021-04-11 18:51:54 +00:00
src = fetchFromGitHub {
owner = "calebh";
repo = "Juniper";
rev = "286050d6be5606db0973feda556d8fbc48b4566c";
hash = "sha256-b+aDDz46Hxgt+Oh2fNMiXFfXhuy16mzauousQGq9+dg=";
2021-04-11 18:51:54 +00:00
};
projectFile = "Juniper/Juniper.fsproj";
nugetDeps = ./deps.nix;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;
2021-04-11 18:51:54 +00:00
meta = {
2021-04-11 18:51:54 +00:00
description = "Functional reactive programming language for programming Arduino";
longDescription = ''
The purpose of Juniper is to provide a functional reactive programming
platform for designing Arduino projects. FRP's high-level approach to
timing-based events fits naturally with Arduino, with which programming
almost entirely revolves around reacting to realtime events. Juniper
transpiles to Arduino C++, which is then compiled to an Arduino
executable.
2021-04-11 18:51:54 +00:00
'';
homepage = "https://www.juniper-lang.org/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AlexSKaye ];
mainProgram = "Juniper";
inherit (dotnet-sdk.meta) platforms;
2021-04-11 18:51:54 +00:00
};
}