pkgs: remove 'nolimips'
Now that the CRI packages it.
This commit is contained in:
parent
1221d5b6d6
commit
f6d648a87a
|
@ -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 { };
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue