-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
66 lines (57 loc) · 1.65 KB
/
flake.nix
File metadata and controls
66 lines (57 loc) · 1.65 KB
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
{
description = "Zig coreutils with modern UX";
nixConfig = {
extra-substituters = [ "https://vibeutils.cachix.org" ];
extra-trusted-public-keys = [
"vibeutils.cachix.org-1:kZjdX4Bz2/VdgK9dCwE5G3C7ygrptzPTFQMH32Ng0WU="
];
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
zig-overlay = {
url = "github:mitchellh/zig-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, flake-utils, zig-overlay }:
flake-utils.lib.eachSystem [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
] (system:
let
pkgs = import nixpkgs { inherit system; };
zig = zig-overlay.packages.${system}."0.15.2";
in {
packages.default = pkgs.stdenv.mkDerivation {
pname = "vibeutils";
version = "0.9.3";
src = ./.;
nativeBuildInputs = [ zig ];
dontConfigure = true;
buildPhase = ''
export XDG_CACHE_HOME="$TMPDIR/xdg-cache"
export ZIG_GLOBAL_CACHE_DIR="$TMPDIR/zig-cache"
mkdir -p "$XDG_CACHE_HOME" "$ZIG_GLOBAL_CACHE_DIR"
zig build -Doptimize=ReleaseSafe --prefix $out
'';
installPhase = ''
mkdir -p $out/share/man/man1
cp -r man/man1/* $out/share/man/man1/
'';
};
devShells.default = pkgs.mkShell {
packages = [
zig
pkgs.actionlint
pkgs.bash
pkgs.cachix
pkgs.coreutils
pkgs.mandoc
];
};
}
);
}