dotenv-cli: remove usage of mkYarnPackage

This commit is contained in:
Pyrox 2024-08-02 23:57:05 -04:00
parent ba575e32ec
commit 1130d8c4bc
No known key found for this signature in database
GPG Key ID: 8CDF3F7CAA53A0F5
2 changed files with 14 additions and 31 deletions

View File

@ -1,26 +0,0 @@
{
"name": "dotenv-cli",
"description": "A global executable to run applications with the ENV variables loaded by dotenv",
"version": "7.4.3",
"author": "entropitor",
"bin": {
"dotenv": "./cli.js"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"dotenv": "^16.3.0",
"dotenv-expand": "^10.0.0",
"minimist": "^1.2.6"
},
"devDependencies": {
"standard": "^16.0.4"
},
"license": "MIT",
"main": "index.js",
"preferGlobal": true,
"repository": "entropitor/dotenv-cli",
"scripts": {
"lint": "standard"
},
"resolutions": {}
}

View File

@ -1,10 +1,14 @@
{
lib,
mkYarnPackage,
stdenv,
fetchYarnDeps,
fetchFromGitHub,
nix-update-script
}: mkYarnPackage rec {
yarnConfigHook,
npmHooks,
nodejs,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "dotenv-cli";
version = "7.4.3";
@ -15,12 +19,17 @@
hash = "sha256-kR9LSHvbvKLuJBGrsmYMeqF3s8SF+/99OeNlKp9azI8=";
};
packageJSON = ./package.json;
offlineCache = fetchYarnDeps {
yarnOfflineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock";
hash = "sha256-Sx5DHUAXquqMqJgvhvHcRPqkfWN49+6icUQIos6OHCg=";
};
nativeBuildInputs = [
yarnConfigHook
npmHooks.npmInstallHook
nodejs
];
passthru.updateScript = nix-update-script { };
meta = {