@@ -13933,6 +13933,12 @@
|
||||
githubId = 7831184;
|
||||
name = "John Mercier";
|
||||
};
|
||||
modderme123 = {
|
||||
email = "modderme123@gmail.com";
|
||||
github = "modderme123";
|
||||
githubId = 14153763;
|
||||
name = "modderme123";
|
||||
};
|
||||
modulistic = {
|
||||
email = "modulistic@gmail.com";
|
||||
github = "modulistic";
|
||||
|
||||
Generated
+3472
File diff suppressed because it is too large
Load Diff
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user