about summary refs log tree commit diff stats
path: root/pkgs/by-name/ri/river-start/package.nix
blob: ab9867087a3503af5b575908cefce38a3dd778ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  writeShellApplication,
  river,
}:
writeShellApplication {
  name = "river-start";
  text = builtins.readFile ./river-start.sh;
  runtimeInputs = [
    river
  ];
  meta = {
    mainProgram = "river-start";
  };
}