unison/editor/default.nix

13 lines
372 B
Nix
Raw Normal View History

2015-06-02 09:35:24 +03:00
{ mkDerivation, reflex, reflex-dom, stdenv, unison-shared }:
mkDerivation {
pname = "unison-editor";
version = "0.1";
src = ./.;
isLibrary = true;
isExecutable = true;
buildDepends = [ reflex reflex-dom unison-shared ];
homepage = "http://unisonweb.org";
description = "The Unison programming language and platform";
license = stdenv.lib.licenses.mit;
2015-05-22 04:47:39 +03:00
}