-
Notifications
You must be signed in to change notification settings - Fork 3
/
flake.nix
53 lines (49 loc) · 1.75 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
{
description = "Manage development containers with Incus";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pname = "blincus";
wrapScript = name: pkgs.writeShellScriptBin name (builtins.readFile ./${name});
generateRunnablePackage = { name, dependencies }:
pkgs.symlinkJoin {
name = "${name}";
paths = if dependencies != null then [(wrapScript name)] ++ dependencies else [(wrapScript name)];
buildInputs = [pkgs.makeWrapper];
postBuild = if name == pname then "wrapProgram $out/bin/${name} --prefix PATH : $out/bin" else "wrapProgram $out/bin/${name} --prefix PATH : $out/bin/${pname}-${name}";
};
in {
packages = {
default = self.packages.${system}.blincus;
${pname} = generateRunnablePackage {
name = "${pname}";
dependencies = (with pkgs; [incus jq xorg.xhost coreutils gnugrep gnused getent util-linux dconf coreutils-full]);
};
install = generateRunnablePackage {
name = "install";
dependencies = (with pkgs; [curl wget gnutar coreutils]);
};
uninstall = generateRunnablePackage {
name = "uninstall";
dependencies = with pkgs; [coreutils];
};
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [shellcheck nodePackages.bash-language-server];
};
formatter = pkgs.alejandra;
}
);
}