-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
89 lines (83 loc) · 2.36 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
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.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
rec {
formatter = pkgs.nixfmt-rfc-style;
devShells.default =
with pkgs;
mkShell {
buildInputs = [
# https://github.com/NixOS/nix/issues/730#issuecomment-162323824
bashInteractive
ruby_3_4
# Required to build psych via irb dependency
# https://github.com/kachick/irb-power_assert/issues/116
# https://github.com/ruby/irb/pull/648
libyaml
dprint
tree
nil
nixfmt-rfc-style
typos
];
};
packages.ruby-ulid = pkgs.stdenv.mkDerivation {
name = "ruby-ulid";
src = self;
installPhase = ''
mkdir -p $out/bin
cp -rf ./lib $out
'';
runtimeDependencies = [ pkgs.ruby_3_4 ];
};
# `nix run`
apps = {
ruby = {
type = "app";
program =
with pkgs;
lib.getExe (writeShellApplication {
name = "ruby-with-ulid";
runtimeInputs = [ ruby_3_4 ];
text = ''
ruby -r"${packages.ruby-ulid}/lib/ulid" "$@"
'';
});
};
irb = {
type = "app";
program =
with pkgs;
lib.getExe (writeShellApplication {
name = "irb-with-ulid";
runtimeInputs = [
ruby_3_4
libyaml
];
text = ''
irb -r"${packages.ruby-ulid}/lib/ulid" "$@"
'';
});
};
};
}
);
}