bento/flake.nix

32 lines
862 B
Nix
Raw Normal View History

2022-09-09 22:11:42 +00:00
{
description = "bento: an asynchronous NixOS deployment tool";
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05;
outputs = { self, nixpkgs }: {
packages.x86_64-linux.default =
with import nixpkgs { system = "x86_64-linux"; };
2022-09-09 22:42:35 +00:00
2022-09-09 22:11:42 +00:00
stdenv.mkDerivation {
2022-10-04 21:03:41 +00:00
name = "bento";
2022-09-09 22:11:42 +00:00
src = self;
patchPhase = ''
substituteInPlace bento --replace 'inotifywait' "${pkgs.inotify-tools}/bin/inotifywait";
'';
2022-09-09 22:11:42 +00:00
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share
install -Dm555 bento $out/bin/
install -Dm444 fleet.nix $out/share/
install -Dm444 config.sh.sample $out/share/
install -Dm444 LICENSE $out/share/
install -Dm444 README.md $out/share/
install -Dm444 utils/bento.nix $out/share/
'';
};
};
}