about summary refs log tree commit diff stats
path: root/pkgs/by-name/mp/mpp-beetrm/package.nix
blob: 425d05fd1341d4fa463635cda22978a1c52bd2d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  writeShellApplication,
  # Dependencies
  mpc,
  beets,
}:
writeShellApplication {
  name = "mpp-beetrm";
  text = builtins.readFile ./mpp-beetrm.sh;
  inheritPath = false;

  runtimeInputs = [
    mpc
    beets
  ];
}