mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-12 12:50:21 +03:00
13 lines
383 B
Nix
13 lines
383 B
Nix
{ mkDerivation, base, reflex, reflex-dom, stdenv, unison-shared }:
|
|
mkDerivation {
|
|
pname = "unison-editor";
|
|
version = "0.1";
|
|
src = ./.;
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ base reflex reflex-dom unison-shared ];
|
|
homepage = "http://unisonweb.org";
|
|
description = "The Unison programming language and platform";
|
|
license = stdenv.lib.licenses.mit;
|
|
}
|