pkgs: remove 'nolimips'

Now that the CRI packages it.
This commit is contained in:
Bruno BELANYI 2023-04-01 16:20:29 +01:00
parent 1221d5b6d6
commit f6d648a87a
2 changed files with 0 additions and 26 deletions

View file

@ -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 { };

View file

@ -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 ];
};
}