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
58
pkgs/development/compilers/fasmg/default.nix
Normal file
58
pkgs/development/compilers/fasmg/default.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{ lib, stdenv
|
||||
, fetchzip
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fasmg";
|
||||
version = "j27m";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://flatassembler.net/fasmg.${version}.zip";
|
||||
sha256 = "0qmklb24n3r0my2risid8r61pi88gqrvm1c0xvyd0bp1ans6d7zd";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
buildPhase = let
|
||||
inherit (stdenv.hostPlatform) system;
|
||||
|
||||
path = {
|
||||
x86_64-linux = {
|
||||
bin = "fasmg.x64";
|
||||
asm = "source/linux/x64/fasmg.asm";
|
||||
};
|
||||
x86_64-darwin = {
|
||||
bin = "source/macos/x64/fasmg";
|
||||
asm = "source/macos/x64/fasmg.asm";
|
||||
};
|
||||
x86-linux = {
|
||||
bin = "fasmg";
|
||||
asm = "source/linux/fasmg.asm";
|
||||
};
|
||||
x86-darwin = {
|
||||
bin = "source/macos/fasmg";
|
||||
asm = "source/macos/fasmg.asm";
|
||||
};
|
||||
}.${system} or (throw "Unsopported system: ${system}");
|
||||
|
||||
in ''
|
||||
chmod +x ${path.bin}
|
||||
./${path.bin} ${path.asm} fasmg
|
||||
'';
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 fasmg $out/bin/fasmg
|
||||
|
||||
mkdir -p $doc/share/doc/fasmg
|
||||
cp docs/*.txt $doc/share/doc/fasmg
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "x86(-64) macro assembler to binary, MZ, PE, COFF, and ELF";
|
||||
homepage = "https://flatassembler.net";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ orivej luc65r ];
|
||||
platforms = with platforms; intersectLists (linux ++ darwin) x86;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue