aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--flake.nix64
1 files changed, 42 insertions, 22 deletions
diff --git a/flake.nix b/flake.nix
index cba5051f..48cb435d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -5,32 +5,52 @@
nixpkgs.url = "github:NixOS/nixpkgs/24.05";
};
- outputs = { self, nixpkgs }:
+ outputs =
+ { self, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" ];
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f system);
in
{
- devShells = forAllSystems
- (system:
- let
- pkgs = import nixpkgs {
- inherit system;
+ devShells = forAllSystems (
+ system:
+ let
+ pkgs = import nixpkgs { inherit system; };
+ in
+ {
+ default =
+ let
+ inherit (pkgs)
+ mkShell
+ buildGoModule
+ acl
+ xorg
+ ;
+ in
+ mkShell {
+ packages = [
+ (buildGoModule rec {
+ pname = "ego";
+ version = "flake";
+
+ src = ./.;
+ vendorHash = null; # we have no dependencies :3
+
+ ldflags = [
+ "-s"
+ "-w"
+ "-X"
+ "main.Version=v${version}"
+ ];
+
+ buildInputs = [
+ acl
+ xorg.libxcb
+ ];
+ })
+ ];
};
- in
- {
- default = with pkgs; mkShell
- {
- packages = [
- clang
- acl
- xorg.libxcb
- (pkgs.writeShellScriptBin "build" ''
- go build -v -ldflags '-s -w -X main.Version=flake'
- '')
- ];
- };
- }
- );
+ }
+ );
};
-} \ No newline at end of file
+}