This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
generated from kachick/anylang-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
63 lines (57 loc) · 1.85 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
inputs = {
# Candidate channels
# - https://github.com/kachick/anylang-template/issues/17
# - https://discourse.nixos.org/t/differences-between-nix-channels/13998
# How to update the revision
# - `nix flake update --commit-lock-file` # https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake-update.html
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
updaterVersion = if (self ? shortRev) then self.shortRev else "dev";
in
rec {
formatter = pkgs.nixfmt-rfc-style;
devShells.default =
with pkgs;
mkShell {
buildInputs = [
# https://github.com/NixOS/nix/issues/730#issuecomment-162323824
# https://github.com/kachick/dotfiles/pull/228
bashInteractive
nil
nixfmt-rfc-style
dprint
typos
go-task
go_1_23
];
};
packages.gwurl = pkgs.buildGo123Module {
pname = "gwurl";
version = updaterVersion;
src = pkgs.lib.cleanSource self;
# When updating go.mod or go.sum, update this sha together as following
# vendorHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
# (`pkgs.lib.fakeSha256` returns invalid string in thesedays... :<)
vendorHash = "sha256-i07qu5jt4XTD2YxorJlAY/Kq1zk4yfiUSlSr3toBBGA=";
};
packages.default = packages.gwurl;
# `nix run`
apps.default = {
type = "app";
program = "${packages.gwurl}/bin/gwurl";
};
}
);
}