pixie: name binary pixie and allow macOS build

- Pixie supports macOS. Nix package should too.
- Updated executable name as discussed in pixie-lang/pixie/issues/455.

closes #33771
This commit is contained in:
Alexander Oloo
2018-01-19 04:01:41 +01:00
committed by Herwig Hochleitner
parent 287415ad52
commit 7eb4844cf2
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
description = "Provides tooling around pixie, e.g. a nicer repl, running tests and fetching dependencies";
homepage = src.meta.homepage;
license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}