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
61
pkgs/development/compilers/koka/default.nix
Normal file
61
pkgs/development/compilers/koka/default.nix
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
{ stdenv, pkgsHostTarget, cmake, makeWrapper, mkDerivation, fetchFromGitHub
|
||||
, alex, array, base, bytestring, cond, containers, directory, extra
|
||||
, filepath, hpack, hspec, hspec-core, isocline, json, lib, mtl
|
||||
, parsec, process, regex-compat, text, time }:
|
||||
|
||||
let
|
||||
version = "2.4.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "koka-lang";
|
||||
repo = "koka";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-+evs5g0qrplUMr8zC51GvUx2JXQBYJb39IaI4rC6CSA=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
kklib = stdenv.mkDerivation {
|
||||
pname = "kklib";
|
||||
inherit version;
|
||||
src = "${src}/kklib";
|
||||
patches = [ ./kklib-mimalloc-macos-fix.diff ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
outputs = [ "out" "dev" ];
|
||||
postInstall = ''
|
||||
mkdir -p ''${!outputDev}/share/koka/v${version}
|
||||
cp -a ../../kklib ''${!outputDev}/share/koka/v${version}
|
||||
'';
|
||||
};
|
||||
inherit (pkgsHostTarget.targetPackages.stdenv) cc;
|
||||
runtimeDeps = [
|
||||
cc
|
||||
cc.bintools.bintools
|
||||
pkgsHostTarget.gnumake
|
||||
pkgsHostTarget.cmake
|
||||
];
|
||||
in
|
||||
mkDerivation rec {
|
||||
pname = "koka";
|
||||
inherit version src;
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
libraryToolDepends = [ hpack ];
|
||||
executableHaskellDepends = [
|
||||
array base bytestring cond containers directory isocline mtl
|
||||
parsec process text time kklib
|
||||
];
|
||||
executableToolDepends = [ alex makeWrapper ];
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/koka/v${version}
|
||||
cp -a lib $out/share/koka/v${version}
|
||||
ln -s ${kklib.dev}/share/koka/v${version}/kklib $out/share/koka/v${version}
|
||||
wrapProgram "$out/bin/koka" \
|
||||
--set CC "${lib.getBin cc}/bin/${cc.targetPrefix}cc" \
|
||||
--prefix PATH : "${lib.makeSearchPath "bin" runtimeDeps}"
|
||||
'';
|
||||
doCheck = false;
|
||||
prePatch = "hpack";
|
||||
description = "Koka language compiler and interpreter";
|
||||
homepage = "https://github.com/koka-lang/koka";
|
||||
changelog = "${homepage}/blob/master/doc/spec/news.mdk";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ siraben sternenseemann ];
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
--- kklib/mimalloc/src/random.c 1969-12-31 18:00:01.000000000 -0600
|
||||
+++ kklib/mimalloc/src/random.c.new 2022-01-16 19:43:54.000000000 -0600
|
||||
@@ -195,6 +195,7 @@
|
||||
#elif defined(__APPLE__)
|
||||
#include <AvailabilityMacros.h>
|
||||
#if defined(MAC_OS_X_VERSION_10_10) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_10
|
||||
+#include <CommonCrypto/CommonCryptoError.h>
|
||||
#include <CommonCrypto/CommonRandom.h>
|
||||
#endif
|
||||
static bool os_random_buf(void* buf, size_t buf_len) {
|
||||
Loading…
Add table
Add a link
Reference in a new issue