summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/window-managers/btops/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/window-managers/btops/default.nix')
-rw-r--r--pkgs/applications/window-managers/btops/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/window-managers/btops/default.nix b/pkgs/applications/window-managers/btops/default.nix
deleted file mode 100644
index a837c435204a..000000000000
--- a/pkgs/applications/window-managers/btops/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ 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;
- };
-}