about summary refs log tree commit diff stats
path: root/pkgs/by-name/mp/mpp-searchadd/package.nix
blob: 2f9db4ca0a7e82a5be5ca7968c3dc8d9d226f9e2 (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-searchadd";
  text = builtins.readFile ./mpp-searchadd.sh;
  inheritPath = false;

  runtimeInputs = [
    mpc
    beets
  ];
}