lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

armips: init at 0.11.0

+33
+31
pkgs/development/compilers/armips/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "armips"; 5 + version = "0.11.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Kingcom"; 9 + repo = "armips"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-L+Uxww/WtvDJn1xZqoqA6Pkzq/98sy1qTxZbv6eEjbA="; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + installPhase = '' 17 + runHook preInstall 18 + 19 + mkdir -p $out/bin 20 + cp armips $out/bin 21 + 22 + runHook postInstall 23 + ''; 24 + 25 + meta = with lib; { 26 + homepage = "https://github.com/Kingcom/armips"; 27 + description = "Assembler for various ARM and MIPS platforms."; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ marius851000 ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 10429 10429 10430 10430 aliceml = callPackage ../development/compilers/aliceml { }; 10431 10431 10432 + armips = callPackage ../development/compilers/armips { }; 10433 + 10432 10434 arachne-pnr = callPackage ../development/compilers/arachne-pnr { }; 10433 10435 10434 10436 asciigraph = callPackage ../tools/text/asciigraph { };