diff --git a/pkgs/tools/X11/dex/default.nix b/pkgs/tools/X11/dex/default.nix index c0d1c5e6e4a..5e0ef6002ce 100644 --- a/pkgs/tools/X11/dex/default.nix +++ b/pkgs/tools/X11/dex/default.nix @@ -1,4 +1,9 @@ -{ lib, stdenv, fetchFromGitHub, python3 }: +{ lib +, stdenv +, fetchFromGitHub +, python3 +, sphinx +}: stdenv.mkDerivation rec { pname = "dex"; @@ -11,8 +16,10 @@ stdenv.mkDerivation rec { sha256 = "03aapcywnz4kl548cygpi25m8adwbmqlmwgxa66v4156ax9dqs86"; }; - propagatedBuildInputs = [ python3 ]; - nativeBuildInputs = [ python3.pkgs.sphinx ]; + strictDeps = true; + + nativeBuildInputs = [ sphinx ]; + buildInputs = [ python3 ]; makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ]; meta = with lib; { @@ -20,5 +27,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/jceb/dex"; platforms = platforms.linux; license = licenses.gpl3Plus; + maintainers = with maintainers; [ nickcao ]; }; }