unison/editor/default.nix
2015-06-02 07:07:50 +00:00

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;
}