mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchNpmDeps
|
|
, testers
|
|
}:
|
|
|
|
let
|
|
inherit (lib) fileset;
|
|
|
|
packageLock = builtins.fromJSON (builtins.readFile ./package-lock.json);
|
|
|
|
pname = "purescm";
|
|
version = packageLock.packages."node_modules/${pname}".version;
|
|
|
|
package = buildNpmPackage {
|
|
inherit pname version;
|
|
|
|
src = fileset.toSource {
|
|
root = ./.;
|
|
fileset = fileset.unions [
|
|
./package.json
|
|
./package-lock.json
|
|
./.gitignore
|
|
];
|
|
};
|
|
dontNpmBuild = true;
|
|
|
|
npmDeps = fetchNpmDeps {
|
|
src = fileset.toSource {
|
|
root = ./.;
|
|
fileset = fileset.unions [
|
|
./package-lock.json
|
|
./package.json
|
|
];
|
|
};
|
|
hash = "sha256-ljeFcLvIET77Q0OR6O5Ok1fGnaxaKaoywpcy2aHq/6o=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/${pname}
|
|
cp -r node_modules/ $out/share/${pname}
|
|
ln -s $out/share/${pname}/node_modules/.bin $out/bin
|
|
'';
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion { inherit package; };
|
|
};
|
|
|
|
meta = {
|
|
description = "Chez Scheme back-end for PureScript";
|
|
homepage = "https://github.com/purescm/purescm";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ toastal ];
|
|
mainProgram = "purescm";
|
|
};
|
|
};
|
|
in
|
|
package
|