We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 954ff25 commit fff279cCopy full SHA for fff279c
src/flake.nix
@@ -48,6 +48,27 @@
48
'';
49
50
in {
51
+ packages = {
52
+ default = self.packages.${system}.roc;
53
+ roc = pkgs.stdenv.mkDerivation {
54
+ name = "roc";
55
+ src = ../.;
56
+ nativeBuildInputs = [ pkgs.zig.hook ];
57
+ zigBuildFlags = [ ];
58
+ };
59
60
+
61
+ apps = {
62
+ default = self.apps.${system}.roc;
63
+ roc = {
64
+ type = "app";
65
+ program = "${self.packages.${system}.roc}/bin/roc";
66
+ meta = {
67
+ description = "Roc CLI";
68
+ mainProgram = "roc";
69
70
71
72
73
devShell = pkgs.mkShell {
74
buildInputs = dependencies;
0 commit comments