alpha
Login
or
Join now
alice.pds.demo.boltless.dev
/
core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
2
Pulls
1
Pipelines
allow go build to produce static bins
author
Akshay
date
2 years ago
(Feb 4, 2025, 9:02 PM UTC)
commit
10638648
1063864803097da7c9fcb92d847c854261ff5c19
parent
72cfc0ea
72cfc0ea25403213b55b594c699e29853db96902
+4
-1
1 changed file
Expand all
Collapse all
Unified
Split
flake.nix
+4
-1
flake.nix
View file
Reviewed
···
40
40
formatter = forAllSystems (system: nixpkgsFor."${system}".alejandra);
41
41
devShells = forAllSystems (system: let
42
42
pkgs = nixpkgsFor.${system};
43
43
+
staticShell = pkgs.mkShell.override {
44
44
+
stdenv = pkgs.pkgsStatic.stdenv;
45
45
+
};
43
46
in {
44
44
-
default = pkgs.mkShell {
47
47
+
default = staticShell {
45
48
nativeBuildInputs = [
46
49
pkgs.go
47
50
pkgs.air