lol

Merge pull request #100042 from siraben/oberon-risc-emu-init

oberon-risc-emu: init at 2020-08-18

authored by

Sandro and committed by
GitHub
be660e2a b80f4f1a

+29
+27
pkgs/misc/emulators/oberon-risc-emu/default.nix
··· 1 + { stdenv, fetchFromGitHub, SDL2 }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "oberon-risc-emu"; 5 + version = "unstable-2020-08-18"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "pdewacht"; 9 + repo = "oberon-risc-emu"; 10 + rev = "26c8ac5737c71811803c87ad51f1f0d6e62e71fe"; 11 + sha256 = "1iriix3cfcpbkjb5xjb4ysh592xppgprwzp3b6qhwcx44g7kdvxq"; 12 + }; 13 + 14 + buildInputs = [ SDL2 ]; 15 + 16 + installPhase = '' 17 + mkdir -p $out/bin 18 + mv risc $out/bin 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = "https://github.com/pdewacht/oberon-risc-emu/"; 23 + description = "Emulator for the Oberon RISC machine"; 24 + license = licenses.isc; 25 + maintainers = with maintainers; [ siraben ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 23584 23584 inherit (gnome2) libglade; 23585 23585 }; 23586 23586 23587 + oberon-risc-emu = callPackage ../misc/emulators/oberon-risc-emu { }; 23588 + 23587 23589 obs-studio = libsForQt5.callPackage ../applications/video/obs-studio { }; 23588 23590 23589 23591 obs-wlrobs = callPackage ../applications/video/obs-studio/wlrobs.nix { };