-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathflake.nix
36 lines (34 loc) · 1.01 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
description = "Wait4X allows you to wait for a port or a service to enter the requested state.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
nixpkgs-unstable,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
unstable = nixpkgs-unstable.legacyPackages.${system};
packageName = "wait4x";
in {
formatter = pkgs.alejandra;
devShells.default = pkgs.mkShell {
name = packageName;
buildInputs = with pkgs; [
go
];
};
packages.default = pkgs.buildGoModule {
pname = packageName;
version = "${self.shortRev or self.dirtyShortRev or "dirty"}";
src = self;
vendorHash = "sha256-KtEOLLsbTfgaXy/0aj5zT5qbgW6qBFMuU3EnnXRu+Ig=";
doCheck = false;
};
});
}