mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
cjs: fix cross compilation, set strictDeps
This commit is contained in:
parent
08e37800ff
commit
5ad533f218
|
@ -29,6 +29,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
|
@ -56,6 +58,10 @@ stdenv.mkDerivation rec {
|
|||
"-Dprofiler=disabled"
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs --build build/choose-tests-locale.sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/linuxmint/cjs";
|
||||
description = "JavaScript bindings for Cinnamon";
|
||||
|
|
Loading…
Reference in a new issue