summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/window-managers/btops/default.nix
blob: a837c435204a0d99100c6d91a8e08beac82cbe86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "btops";
  version = "0.1.0";

  goPackagePath = "github.com/cmschuetz/btops";

  src = fetchFromGitHub {
    owner = "cmschuetz";
    repo = "btops";
    rev = version;
    sha256 = "sha256-eE28PGfpmmhcyeSy3PICebAs+cHAZXPxT+S/4+9ukcY=";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "bspwm desktop management that supports dymanic appending, removing, and renaming";
    homepage = "https://github.com/cmschuetz/btops";
    maintainers = with maintainers; [ mnacamura ];
    license = licenses.mit;
    platforms = platforms.linux;
  };
}