-
Notifications
You must be signed in to change notification settings - Fork 19
/
flake.nix
65 lines (58 loc) · 2.13 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
{
description = "A basic AppImage bundler";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = (import nixpkgs { inherit system; }).pkgsStatic;
in
rec {
# runtimes are an executable that mount the squashfs part of the appimage and start AppRun
packages.appimage-runtimes = {
appimagecrafters = pkgs.callPackage ./runtimes/appimagecrafters { };
appimage-type2-runtime = pkgs.callPackage ./runtimes/appimage-type2-runtime { };
};
# appruns contain an AppRun executable that does setup and launches entrypoint
packages.appimage-appruns = {
userns-chroot = pkgs.callPackage ./appruns/userns-chroot { };
};
lib.mkAppImage = pkgs.callPackage ./mkAppImage.nix {
mkappimage-runtime = packages.appimage-runtimes.appimage-type2-runtime;
mkappimage-apprun = packages.appimage-appruns.userns-chroot;
};
bundlers.default = drv:
if drv.type == "app" then
lib.mkAppImage
{
program = drv.program;
}
else if drv.type == "derivation" then
lib.mkAppImage
{
program = pkgs.lib.getExe drv;
}
else builtins.abort "don't know how to build ${drv.type}; only know app and derivation";
checks =
let
# use regular (non-static) nixpkgs
pkgs = import nixpkgs { inherit system; };
hello-appimage = bundlers.default pkgs.hello;
in
{
hello-is-static = pkgs.runCommand "check-hello-is-static"
{
nativeBuildInputs = [ (pkgs.lib.getBin pkgs.stdenv.cc.libc) ];
} ''
(! ldd ${hello-appimage} 2>&1) | grep "not a dynamic executable"
touch $out
'';
};
});
}