diff --git a/pkgs/default.nix b/pkgs/default.nix index df96369..0a3aa84 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -24,8 +24,6 @@ pkgs.lib.makeScope pkgs.newScope (pkgs: { matrix-notifier = pkgs.callPackage ./matrix-notifier { }; - nolimips = pkgs.callPackage ./nolimips { }; - osc52 = pkgs.callPackage ./osc52 { }; pnpm-lock-export = pkgs.callPackage ./pnpm-lock-export { }; diff --git a/pkgs/nolimips/default.nix b/pkgs/nolimips/default.nix deleted file mode 100644 index 65d847d..0000000 --- a/pkgs/nolimips/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ lib, fetchurl, stdenv }: -stdenv.mkDerivation rec { - pname = "nolimips"; - version = "0.11"; - - src = fetchurl { - url = "https://www.lrde.epita.fr/~tiger/download/${pname}-${version}.tar.gz"; - sha256 = "sha256-OjbfcBwCZtFP0usz8YXA0lN8xs0jS4I19mkh9p7VHc8="; - }; - - doCheck = true; - - meta = with lib; { - description = "A basic MIPS architecture simulator"; - longDescription = '' - A basic MIPS architecture simulator, which implements a few system calls - and supports an arbitrary number of registers. - ''; - homepage = "https://www.lrde.epita.fr/wiki/Nolimips"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = with maintainers; [ ambroisie ]; - }; -}