uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
50
pkgs/development/tools/mars-mips/default.nix
Normal file
50
pkgs/development/tools/mars-mips/default.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ lib, stdenvNoCC, fetchurl, makeWrapper, copyDesktopItems, makeDesktopItem, unzip, imagemagick, jre }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "mars-mips";
|
||||
version = "4.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://courses.missouristate.edu/KenVollmar/MARS/MARS_${lib.replaceStrings ["."] ["_"] version}_Aug2014/Mars${lib.replaceStrings ["."] ["_"] version}.jar";
|
||||
sha256 = "15kh1fahkkbbf4wvb6ijzny4fi5dh4pycxyzp5325dm2ddkhnd5c";
|
||||
};
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper copyDesktopItems unzip imagemagick ];
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = pname;
|
||||
desktopName = "MARS";
|
||||
exec = "mars-mips";
|
||||
icon = "mars-mips";
|
||||
comment = "An IDE for programming in MIPS assembly language";
|
||||
categories = [ "Development" "IDE" ];
|
||||
})
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
export JAR=$out/share/java/${pname}/${pname}.jar
|
||||
install -D $src $JAR
|
||||
makeWrapper ${jre}/bin/java $out/bin/${pname} \
|
||||
--add-flags "-jar $JAR"
|
||||
|
||||
unzip ${src} images/MarsThumbnail.gif
|
||||
mkdir -p $out/share/pixmaps
|
||||
convert images/MarsThumbnail.gif $out/share/pixmaps/mars-mips.png
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An IDE for programming in MIPS assembly language intended for educational-level use";
|
||||
homepage = "https://courses.missouristate.edu/KenVollmar/MARS/";
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ emilytrau ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue