about summary refs log tree commit diff
path: root/pkgs/larbs-scripts/default.nix
blob: 6bff5cd9789903145f7db8f14c44bde4ab4c7090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, callPackage, buildEnv }:
with stdenv.lib;
let
  setbg = callPackage ./setbg.nix { };
  ds = callPackage ./displayselect { };
in
  buildEnv {
    name = "larbs-scripts";
    paths = [
      setbg
      ds
    ];

    meta = {
      homepage = "https://github.com/LukeSmithxyz/voidrice";
      description = "Set of larbs user scripts";
      platforms = [ "x86_64-linux" ];
    };
  }