diff --git a/pkgs/applications/misc/cool-old-term/default.nix b/pkgs/applications/misc/cool-old-term/default.nix deleted file mode 100644 index c56393a1be83..000000000000 --- a/pkgs/applications/misc/cool-old-term/default.nix +++ /dev/null @@ -1,53 +0,0 @@ -{ stdenv, fetchFromGitHub, qt5 }: - -stdenv.mkDerivation rec { - version = "0.9"; - name = "cool-old-term-${version}"; - - src = fetchFromGitHub { - owner = "Swordifish90"; - repo = "cool-old-term"; - rev = "2494bc05228290545df8c59c05624a4b903e9068"; - sha256 = "8462f3eded7b2219acc143258544b0dfac32d81e10cac61ff14276d426704c93"; - }; - - buildInputs = [ qt5 ]; - - buildPhase = '' - pushd ./konsole-qml-plugin - qmake konsole-qml-plugin.pro PREFIX=$out - make - popd - ''; - - installPhase = '' - pushd ./konsole-qml-plugin - make install - popd - - install -d $out/bin $out/lib/cool-old-term $out/share/cool-old-term - cp -a ./imports $out/lib/cool-old-term/ - cp -a ./app $out/share/cool-old-term/ - - cat > $out/bin/cool-old-term <