mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-22 15:04:46 +03:00
add translator: npmlock2nix
This commit is contained in:
parent
d83d76d5ef
commit
a1a3e57e05
19
flake.lock
19
flake.lock
@ -15,9 +15,26 @@
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"npmlock2nix": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1631558099,
|
||||
"narHash": "sha256-xguvgtrIQHPxpc4J6EhfBnYtQDGJpt6hK1dN7KEi8R4=",
|
||||
"owner": "nix-community",
|
||||
"repo": "npmlock2nix",
|
||||
"rev": "33eb3300561d724da64a46ab8e9a05a9cfa9264b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "npmlock2nix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs",
|
||||
"npmlock2nix": "npmlock2nix"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
13
flake.nix
13
flake.nix
@ -3,12 +3,13 @@
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
npmlock2nix = { url = "github:nix-community/npmlock2nix"; flake = false; };
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
outputs = { self, nixpkgs, npmlock2nix }:
|
||||
let
|
||||
|
||||
lib = nixpkgs.lib;
|
||||
lib = nixpkgs.lib;
|
||||
|
||||
supportedSystems = [ "x86_64-linux" ];
|
||||
|
||||
@ -19,7 +20,13 @@
|
||||
overlays = [ self.overlay ];
|
||||
});
|
||||
|
||||
dream2nixFor = forAllSystems (system: import ./src { pkgs = nixpkgsFor."${system}"; } );
|
||||
dream2nixFor = forAllSystems (system: import ./src rec {
|
||||
pkgs = nixpkgsFor."${system}";
|
||||
externalSources = pkgs.runCommand "dream2nix-imported" {} ''
|
||||
mkdir -p $out/npmlock2nix
|
||||
cp ${npmlock2nix}/{internal.nix,LICENSE} $out/npmlock2nix/
|
||||
'';
|
||||
});
|
||||
|
||||
in
|
||||
{
|
||||
|
@ -49,6 +49,10 @@ def translate(args):
|
||||
outputFile=output,
|
||||
)
|
||||
|
||||
# remove output files if exists
|
||||
if os.path.exists(output):
|
||||
os.remove(output)
|
||||
|
||||
# dump translator arguments to json file and execute translator
|
||||
with tempfile.NamedTemporaryFile("w") as inputJsonFile:
|
||||
json.dump(translatorInput, inputJsonFile, indent=2)
|
||||
|
@ -1,5 +1,7 @@
|
||||
{
|
||||
pkgs,
|
||||
|
||||
externalSources,
|
||||
location,
|
||||
translators,
|
||||
}:
|
||||
@ -11,6 +13,8 @@ in
|
||||
# the unified translator cli
|
||||
cli = callPackage ({ python3, writeScript, ... }:
|
||||
writeScript "cli" ''
|
||||
export d2nExternalSources=${externalSources}
|
||||
|
||||
translatorsJsonFile=${translators.translatorsJsonFile} \
|
||||
dream2nixSrc=${../.} \
|
||||
${python3}/bin/python ${./cli.py} "$@"
|
||||
@ -35,6 +39,8 @@ in
|
||||
fi
|
||||
|
||||
cp -r ${location}/* $target/
|
||||
mkdir $target/external
|
||||
cp -r ${externalSources}/* $target/external/
|
||||
chmod -R +w $target
|
||||
''
|
||||
) {};
|
||||
|
@ -1,20 +1,29 @@
|
||||
{
|
||||
pkgs ? import <nixpkgs> {},
|
||||
externalSources ?
|
||||
if builtins.getEnv "d2nExternalSources" != "" then
|
||||
builtins.getEnv "d2nExternalSources"
|
||||
else
|
||||
./external,
|
||||
}:
|
||||
|
||||
let
|
||||
callPackage = pkgs.callPackage;
|
||||
|
||||
externals = {
|
||||
npmlock2nix = callPackage "${externalSources}/npmlock2nix/internal.nix" {};
|
||||
};
|
||||
in
|
||||
|
||||
rec {
|
||||
|
||||
apps = callPackage ./apps { inherit location translators; };
|
||||
apps = callPackage ./apps { inherit externalSources location translators; };
|
||||
|
||||
builders = callPackage ./builders {};
|
||||
|
||||
fetchers = callPackage ./fetchers {};
|
||||
|
||||
translators = callPackage ./translators {};
|
||||
translators = callPackage ./translators { inherit externalSources externals location; };
|
||||
|
||||
|
||||
# the location of the dream2nix framework for self references (update scripts, etc.)
|
||||
|
@ -1,38 +1,79 @@
|
||||
{ pkgs }:
|
||||
{
|
||||
pkgs,
|
||||
|
||||
externalSources,
|
||||
externals,
|
||||
location,
|
||||
}:
|
||||
let
|
||||
|
||||
lib = pkgs.lib;
|
||||
|
||||
callPackage = pkgs.callPackage;
|
||||
callTranslator = file: name: args: pkgs.callPackage file (args // {
|
||||
inherit externals;
|
||||
translatorName = name;
|
||||
});
|
||||
|
||||
# every translator must provide 'bin/translate'
|
||||
translatorExec = translatorPkg: "${translatorPkg}/bin/translate";
|
||||
|
||||
# directory names of a given directory
|
||||
dirNames = dir: lib.attrNames (lib.filterAttrs (name: type: type == "directory") (builtins.readDir dir));
|
||||
|
||||
translators =
|
||||
# wrapPureTranslator
|
||||
wrapPureTranslator = translatorAttrPath: pkgs.writeScriptBin "translate" ''
|
||||
#!${pkgs.bash}/bin/bash
|
||||
|
||||
echo wrapPureTranslator
|
||||
|
||||
jsonInputFile=$1
|
||||
outputFile=$(${pkgs.jq}/bin/jq '.outputFile' -c -r $jsonInputFile)
|
||||
export d2nExternalSources=${externalSources}
|
||||
|
||||
nix eval --impure --raw --expr "
|
||||
builtins.toJSON (
|
||||
(import ${location} {}).translators.translatorsInternal.${
|
||||
lib.concatStringsSep "." translatorAttrPath
|
||||
}.translate
|
||||
(builtins.fromJSON (builtins.readFile '''$1'''))
|
||||
)
|
||||
" | ${pkgs.jq}/bin/jq > $outputFile
|
||||
'';
|
||||
|
||||
mkTranslatorsSet = function:
|
||||
lib.genAttrs (dirNames ./.) (subsystem:
|
||||
lib.genAttrs
|
||||
(lib.filter (dir: builtins.pathExists (./. + "/${subsystem}/${dir}")) [ "impure" "ifd" "pure-nix" ])
|
||||
(transType:
|
||||
lib.genAttrs (dirNames (./. + "/${subsystem}/${transType}")) (translatorName:
|
||||
callPackage (./. + "/${subsystem}/${transType}/${translatorName}") {}
|
||||
)
|
||||
)
|
||||
(lib.filter (dir: builtins.pathExists (./. + "/${subsystem}/${dir}")) [ "impure" "ifd" "pure" ])
|
||||
(transType: function subsystem transType)
|
||||
);
|
||||
|
||||
# dump the list of available translators to a json file so they can be listed in the CLI
|
||||
translatorsJsonFile = pkgs.writeText "translators.json" (builtins.toJSON (
|
||||
lib.genAttrs (dirNames ./.) (subsystem:
|
||||
lib.genAttrs
|
||||
(lib.filter (dir: builtins.pathExists (./. + "/${subsystem}/${dir}")) [ "impure" "ifd" "pure-nix" ])
|
||||
(transType:
|
||||
dirNames (./. + "/${subsystem}/${transType}")
|
||||
)
|
||||
|
||||
translators = mkTranslatorsSet (subsystem: type:
|
||||
lib.genAttrs (dirNames (./. + "/${subsystem}/${type}")) (translatorName:
|
||||
if type == "impure" then
|
||||
callTranslator (./. + "/${subsystem}/${type}/${translatorName}") translatorName {}
|
||||
else
|
||||
wrapPureTranslator [ subsystem type translatorName ]
|
||||
)
|
||||
));
|
||||
);
|
||||
|
||||
translatorsInternal = mkTranslatorsSet (subsystem: type:
|
||||
lib.genAttrs (dirNames (./. + "/${subsystem}/${type}")) (translatorName:
|
||||
callTranslator (./. + "/${subsystem}/${type}/${translatorName}") translatorName {}
|
||||
)
|
||||
);
|
||||
|
||||
translatorsJsonFile =
|
||||
pkgs.writeText
|
||||
"translators.json"
|
||||
(builtins.toJSON
|
||||
(mkTranslatorsSet (subsystem: type:
|
||||
dirNames (./. + "/${subsystem}/${type}")
|
||||
)
|
||||
));
|
||||
|
||||
in
|
||||
{
|
||||
inherit translators translatorsJsonFile;
|
||||
inherit translators translatorsInternal translatorsJsonFile;
|
||||
}
|
||||
|
39
src/translators/nodejs/pure/npmlock2nix/default.nix
Normal file
39
src/translators/nodejs/pure/npmlock2nix/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
externals,
|
||||
translatorName,
|
||||
}:
|
||||
|
||||
let
|
||||
translate =
|
||||
{
|
||||
inputFiles,
|
||||
...
|
||||
}:
|
||||
let
|
||||
parsed = externals.npmlock2nix.readLockfile (builtins.elemAt inputFiles 0);
|
||||
in
|
||||
{
|
||||
sources = builtins.mapAttrs (pname: pdata:{
|
||||
url = pdata.resolved;
|
||||
type = "fetchurl";
|
||||
hash = pdata.integrity;
|
||||
}) parsed.dependencies;
|
||||
|
||||
generic = {
|
||||
buildSystem = "nodejs";
|
||||
buildSystemFormatVersion = 1;
|
||||
producedBy = translatorName;
|
||||
dependencyGraph = null;
|
||||
sourcesCombinedHash = null;
|
||||
};
|
||||
|
||||
buildSystem = {
|
||||
nodejsVersion = 14;
|
||||
};
|
||||
};
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
inherit translate;
|
||||
}
|
@ -6,7 +6,7 @@ import sys
|
||||
|
||||
|
||||
def main():
|
||||
direcotry = sys.argv[1]
|
||||
directory = sys.argv[1]
|
||||
output_file = sys.argv[2]
|
||||
|
||||
packages = {}
|
||||
@ -15,7 +15,7 @@ def main():
|
||||
# - url
|
||||
# - sha256
|
||||
# - format (sdist/wheel)
|
||||
for path in list(glob(direcotry + '/*')):
|
||||
for path in list(glob(directory + '/*')):
|
||||
_, _, file = path.rpartition('/')
|
||||
|
||||
print(f"processing file: {file}")
|
||||
|
Loading…
Reference in New Issue
Block a user