1
0
Fork 1
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:
Nick Cao 2024-07-27 15:46:46 -04:00
parent 08e37800ff
commit 5ad533f218
No known key found for this signature in database

View file

@ -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";