remove dependency nix-parsec

This commit is contained in:
DavHau 2022-02-23 19:12:33 +07:00
parent ae3172315e
commit b78958849d
3 changed files with 0 additions and 32 deletions

View File

@ -31,22 +31,6 @@
"type": "indirect"
}
},
"nix-parsec": {
"flake": false,
"locked": {
"lastModified": 1635533376,
"narHash": "sha256-/HrG0UPGnI5VdkhrNrpDiM2+nhdL6lD/bqyGtYv0QDE=",
"owner": "nprindle",
"repo": "nix-parsec",
"rev": "1bf25dd9c5de1257a1c67de3c81c96d05e8beb5e",
"type": "github"
},
"original": {
"owner": "nprindle",
"repo": "nix-parsec",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1634782485,
@ -99,7 +83,6 @@
"inputs": {
"gomod2nix": "gomod2nix",
"mach-nix": "mach-nix",
"nix-parsec": "nix-parsec",
"nixpkgs": "nixpkgs",
"node2nix": "node2nix",
"poetry2nix": "poetry2nix"

View File

@ -7,9 +7,6 @@
# required for builder go/gomod2nix
gomod2nix = { url = "github:tweag/gomod2nix"; flake = false; };
# required for translator nodejs/pure/package-lock
nix-parsec = { url = "github:nprindle/nix-parsec"; flake = false; };
# required for translator pip
mach-nix = { url = "mach-nix"; flake = false; };
@ -24,7 +21,6 @@
self,
gomod2nix,
mach-nix,
nix-parsec,
nixpkgs,
node2nix,
poetry2nix,
@ -60,11 +56,6 @@
"nix/node-env.nix"
"LICENSE"
];
nix-parsec = [
"parsec.nix"
"lexer.nix"
"LICENSE"
];
poetry2nix = [
"semver.nix"
"LICENSE"

View File

@ -96,12 +96,6 @@ let
pkgs.callPackage "${externalSources.node2nix}/nix/node-env.nix" {
inherit nodejs;
};
nix-parsec = rec {
lexer = import "${externalSources.nix-parsec}/lexer.nix" {
inherit parsec;
};
parsec = import "${externalSources.nix-parsec}/parsec.nix";
};
};
dreamOverrides =