spoof: init at 2.0.4

This commit is contained in:
modderme123
2024-02-22 10:14:37 -08:00
parent 40c0cfa30b
commit 1bd37c8175
2 changed files with 3506 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+34
View File
@@ -0,0 +1,34 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "spoof";
version = "2.0.4";
src = fetchFromGitHub {
owner = "feross";
repo = "spoof";
rev = "v${version}";
hash = "sha256-oysURKLQ/rbGAvsy3K0OmDRHUqRKa8S8l5ihBjNqYXc=";
};
npmDepsHash = "sha256-jf0tcsftXoYy6K3PcXgSU+3PAb6Ux9BsVpOX79TI4/o=";
postPatch = ''
cp ${./package-lock.json} package-lock.json
'';
npmFlags = [ "--ignore-scripts" ];
dontNpmBuild = true;
meta = {
description = "Easily spoof your MAC address in OS X & Linux";
homepage = "https://github.com/feross/spoof";
license = lib.licenses.mit;
mainProgram = "spoof";
maintainers = with lib.maintainers; [ modderme123 ];
};
}