unison/editor/default.nix

13 lines
383 B
Nix
Raw Normal View History

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