15 stdenv.mkDerivation rec {
19 src = fetchFromGitHub {
23 sha256 = "sha256-fHvGXaZL7MMvTnkap341B79PDDo2lOVPPcOH4AX/zXo=";
28 installFlags = [ "PREFIX=$(out)" ];
32 binPath = lib.makeBinPath [
43 wrapProgram $out/bin/tdrop --prefix PATH : ${binPath}
46 nativeBuildInputs = [ makeWrapper ];
49 description = "Glorified WM-Independent Dropdown Creator";
50 mainProgram = "tdrop";
51 homepage = "https://github.com/noctuid/tdrop";
52 license = licenses.bsd2;
53 platforms = platforms.linux;