cortex: Remove package

I removed cortex it is rather unmaintained. The last update (as of
writing) was 8 months ago, there was no release ever.

For a better alternative, have a look at `rtv`.

-34
-32
pkgs/applications/misc/cortex/default.nix
··· 1 - { stdenv, fetchgit, python3 }: 2 - 3 - stdenv.mkDerivation { 4 - name = "cortex-2015-08-23"; 5 - 6 - src = fetchgit { 7 - url = "https://github.com/gglucas/cortex"; 8 - rev = "ff10ff860479fe2f50590c0f8fcfc6dc34446639"; 9 - sha256 = "0pa2kkkcnmf56d5d5kknv0gfahddym75xripd4kgszaj6hsib3zg"; 10 - }; 11 - 12 - buildInputs = [ stdenv python3 ]; 13 - 14 - prePatch = '' 15 - substituteInPlace cortex --replace "/usr/bin/env python3" "${python3}/bin/python3" 16 - ''; 17 - 18 - installPhase = '' 19 - mkdir -p $out/bin 20 - cp cortex $out/bin/ 21 - chmod +x $out/bin/cortex 22 - ''; 23 - 24 - meta = with stdenv.lib; { 25 - homepage = "http://cortex.glacicle.org"; 26 - description = "An ncurses reddit browser and monitor"; 27 - license = licenses.mit; 28 - maintainers = with maintainers; [ matthiasbeyer ]; 29 - platforms = with platforms; unix; 30 - }; 31 - 32 - }
···
-2
pkgs/top-level/all-packages.nix
··· 13191 inherit (gnome2) libgnomeui GConf; 13192 }; 13193 13194 - cortex = callPackage ../applications/misc/cortex { }; 13195 - 13196 csound = callPackage ../applications/audio/csound { }; 13197 13198 cinepaint = callPackage ../applications/graphics/cinepaint {
··· 13191 inherit (gnome2) libgnomeui GConf; 13192 }; 13193 13194 csound = callPackage ../applications/audio/csound { }; 13195 13196 cinepaint = callPackage ../applications/graphics/cinepaint {