orange/rootfs.nix

13 lines
229 B
Nix
Raw Normal View History

2023-04-04 17:51:16 +00:00
{ pkgs }:
2023-04-04 17:51:16 +00:00
pkgs.stdenv.mkDerivation {
name = "orange-rootfs.img.zstd";
nativeBuildInputs = with pkgs; [ zstd ];
buildCommand = ''
truncate -s 512M ./rootfs.img
2023-04-04 17:51:16 +00:00
zstd -T$NIX_BUILD_CORES ./rootfs.img -o $out
'';
}