Commit 1f55fe36 authored by Jacob Moody's avatar Jacob Moody
Browse files

drawterm: enable strict deps and parallel builds

parent c3e258d5
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
, config
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation {
  pname = "drawterm";
  version = "unstable-2023-06-27";

@@ -25,6 +25,8 @@ stdenv.mkDerivation rec {
    sha256 = "ebqw1jqeRC0FWeUIO/HaEovuwzU6+B48TjZbVJXByvA=";
  };

  enableParallelBuilding = true;
  strictDeps = true;
  nativeBuildInputs = [ installShellFiles ] ++ {
    linux = [ pkg-config wayland-scanner ];
    unix = [ makeWrapper ];
@@ -52,7 +54,6 @@ stdenv.mkDerivation rec {
    installManPage drawterm.1
  '';


  meta = with lib; {
    description = "Connect to Plan 9 CPU servers from other operating systems.";
    homepage = "https://drawterm.9front.org/";