about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-09-12 22:21:55 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-11 23:42:04 -0300
commitbde3f6a4b1013262ec089ff3f178e8784154ab19 (patch)
tree66aa51bfc002ea8ed95a330a124b74832c802642 /pkgs/applications/terminal-emulators
parent96179893343901726eb96937460fa090ca5518ce (diff)
havoc: migrate to by-name
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/havoc/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/applications/terminal-emulators/havoc/default.nix b/pkgs/applications/terminal-emulators/havoc/default.nix
deleted file mode 100644
index fa161a8147493..0000000000000
--- a/pkgs/applications/terminal-emulators/havoc/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, libxkbcommon
-, pkg-config
-, wayland-protocols
-, wayland-scanner
-, wayland
-}:
-
-stdenv.mkDerivation rec {
-  pname = "havoc";
-  version = "0.5.0";
-
-  src = fetchFromGitHub {
-    owner = "ii8";
-    repo = pname;
-    rev = version;
-    hash = "sha256-jvGm2gFdMS61otETF7gOEpYn6IuLfqI95IpEVfIv+C4=";
-  };
-
-  depsBuildBuild = [
-    pkg-config
-  ];
-
-  nativeBuildInputs = [
-    wayland-protocols
-    wayland-scanner
-  ];
-
-  buildInputs = [
-    libxkbcommon
-    wayland
-  ];
-
-  dontConfigure = true;
-
-  installFlags = [ "PREFIX=$$out" ];
-
-  postInstall = ''
-    install -D -m 644 havoc.cfg -t $out/etc/${pname}/
-    install -D -m 644 README.md -t $out/share/doc/${pname}-${version}/
-  '';
-
-  enableParallelBuilding = true;
-
-  meta = with lib; {
-    homepage = "https://github.com/ii8/havoc";
-    description = "A minimal terminal emulator for Wayland";
-    license = with licenses; [ mit publicDomain ];
-    platforms = with platforms; unix;
-    maintainers = with maintainers; [ AndersonTorres ];
-    # fatal error: 'sys/epoll.h' file not found
-    broken = stdenv.isDarwin;
-  };
-}