Commit Graph

651 Commits

Author SHA1 Message Date
Yusuf Bera Ertan
3159732889
fix(rust): handle unhandled behaviour in recreating cargo lock 2022-08-02 04:01:16 +03:00
Yusuf Bera Ertan
a57ed561df
fix(rust): workaround patching path dependencies 2022-08-02 00:39:23 +03:00
DavHau
2fcfba92bf
Merge pull request #218 from nix-community/nodejs
Nodejs + fetcher improvments
2022-07-31 18:18:51 +02:00
DavHau
7564d81e50 rafactor: rename rust example 2022-07-31 18:00:52 +02:00
DavHau
cb394b8d7e refactor: rename nodejs workspace example2 2022-07-31 17:59:56 +02:00
DavHau
72ad849610 fix: nodejs: bundle dependency mistake in translation to path type 2022-07-31 17:59:24 +02:00
DavHau
5bf294508c fix: indexers: don't fail on single translation error 2022-07-30 17:54:02 +02:00
DavHau
fb16017634 fix: nodejs: package-json: ignore yarn.lock during translation 2022-07-30 17:53:34 +02:00
DavHau
ee4a3e7062 feat: nodejs: package-lock: handle bundled dependenceis better
- assume bundled dep if type looks like http but resolved field is missing
- use path source type to handle bundled deps
2022-07-30 17:52:49 +02:00
DavHau
b899116277 feat: fetchers: git: improve error message on invalid ref/rev 2022-07-30 17:50:00 +02:00
DavHau
c0b506c51d feat: nodejs: improve electron override logic
- ignore electron versions < 3
- update print-hashes.sh
- add hashes for version 17 and 18
2022-07-30 17:48:24 +02:00
Yusuf Bera Ertan
26dce978b1
fix(indexers/crates-io): rename max_pages field to correct maxPages instead of maxPackagesCount 2022-07-30 01:42:00 +03:00
DavHau
e2ab650b5a
Merge pull request #215 from nix-community/nodejs
Imrovements for: nodejs, translators, indexers
2022-07-29 23:56:08 +02:00
DavHau
f3aec937d3 indexers: libraries-io: improve verbosity 2022-07-29 22:33:34 +02:00
DavHau
56fae02e3a feat: verify dream-lock.json against jsonschema 2022-07-29 21:59:20 +02:00
DavHau
b1e15df1a1 fix: fetching: only override sourceSpec version and name if not already specified 2022-07-29 21:25:30 +02:00
DavHau
33b8f4e78e fix: don't fail on translation if git add doesn't work 2022-07-29 21:24:56 +02:00
DavHau
33fdde0233 feat: indexer: use gnuparallel to speed up index translation 2022-07-29 21:23:42 +02:00
DavHau
ab7edc4296 fix: indexers: respect more parameters
- inject
- packageOverrides
- sourceOverrides
2022-07-29 17:06:00 +02:00
DavHau
5ddce49dce fix: indexers: always add main source to dream-lock.json 2022-07-29 17:05:14 +02:00
DavHau
c6723cb1a5 nodejs fix: empty dependencies not detected sometimes 2022-07-29 16:02:14 +02:00
DavHau
1beb1eaab5 feat: improve nodejs translators/builders
- also execute preinstall script during package installation
- disable devDependencies if no instal script present by default
2022-07-29 16:01:35 +02:00
DavHau
130d71f9d5 feat: pre-commit-hook to cleanup leftover example artifacts 2022-07-29 14:17:40 +02:00
DavHau
97243aa70a libraries-io: get api key from env 2022-07-29 14:14:02 +02:00
DavHau
99914a4331 python: add verbosity to pip translator 2022-07-27 21:23:46 +02:00
DavHau
55f9d0c210
Merge pull request #209 from nix-community/fix/read-only-compat
fix: make dream2nix evaluation work with --read-only flag
2022-07-27 16:48:50 +02:00
Yusuf Bera Ertan
0f4d0a9847
tests: dont run read-only check no certain examples 2022-07-24 19:53:38 +03:00
Yusuf Bera Ertan
46aee5cdfe
fix: remove one more instance where --read-only is broken 2022-07-24 19:45:52 +03:00
Yusuf Bera Ertan
0cf34d9162
tests: run nix eval test after resolving impurities 2022-07-24 19:29:18 +03:00
Yusuf Bera Ertan
07d0e71a13
tests: run nix eval with read-only and no-ifd flags on examples to ensure they work with those flags 2022-07-24 19:26:46 +03:00
Yusuf Bera Ertan
df3d951db0
fix: make dream2nix evaluation work with --read-only flag 2022-07-24 18:58:24 +03:00
DavHau
aaa994667f chore: re-format with alejandra 2 2022-07-24 00:35:42 +02:00
DavHau
7053299bc5 chore: update alejandra 2022-07-24 00:20:26 +02:00
DavHau
d9a5fece32
Merge pull request #208 from nix-community/nodejs
Nodejs devShell: improve & allow for good interop with npm
2022-07-24 00:15:04 +02:00
DavHau
9e85f2ab73 feat: nodejs: move devShell logic to separate file 2022-07-23 23:57:57 +02:00
DavHau
bb07fbd9e3 feat: nodejs: installMethod=copy by default for top-level packages 2022-07-23 23:45:03 +02:00
DavHau
81739947c4 devShell allowing for good interop with npm
The shellHook always overwrites existing ./node_modules with a full
flat copy of all transitive dependencies produced by dream2nix from
the lock file.

This allows good interop with npm. npm is still needed to update or
add dependencies. npm can write to the ./node_modules without
any issues and add or replace dependencies.

If npm modifies ./node_modules, then its contents will be a mix of
dream2nix installed packages and npm installed packages until the
devShell is re-entered and dream2nix overwrites the ./node_modules
with a fully reproducible copy again.
2022-07-23 23:41:44 +02:00
DavHau
59f305953f refactor: remove confusing setting from haskell example 2022-07-22 17:31:16 +02:00
DavHau
8e1eac8e38
Merge pull request #207 from nix-community/docs
docs on haskell & refactor docs
2022-07-22 17:22:25 +02:00
DavHau
b478f29d7a add documentation for the haskell subsystem 2022-07-22 17:19:54 +02:00
DavHau
e8fe3f803f rename examples under ./examples
Apply naming scheme {subsystem}_{test-name}
2022-07-22 16:02:21 +02:00
DavHau
2b871d2970 fix ./src/utils/default.nix subsystemInfo missing 2022-07-19 16:16:44 +02:00
DavHau
005e494a68 fix: impure translator template 2022-07-19 16:14:50 +02:00
DavHau
67a96dc5cb fix: dream-lock.json example & impure translator template 2022-07-19 09:57:30 +02:00
DavHau
adaae3473f
Merge pull request #203 from nix-community/revert-202-refine-docs
Revert "refactor: readme/docs"
2022-07-18 18:58:50 +02:00
DavHau
9ce7b78c1f
Revert "refactor: readme/docs" 2022-07-18 18:58:36 +02:00
DavHau
ca44eef8af
Merge pull request #202 from nix-community/refine-docs
refactor: readme/docs
2022-07-18 18:53:21 +02:00
DavHau
3808b309dc refactor: readme/docs
The motivation of this change is to trim down the github front page (README.md). Code examples should not be part of that page. It should be short and only contain the most important information that's necessary for a rough overview.

- add sections `Quick Start` and `Presentation ...` to docs
- move usage examples from readme to `Quick Start` in the docs
- trim down the explanation about `Documentation` a bit
- move the youtube presentation to the end
-
2022-07-17 21:17:41 +02:00
DavHau
20f9415889
Merge pull request #201 from nix-community/python-docs
python improvements, docs and guide.
2022-07-16 19:07:01 +02:00
DavHau
932ccb13dc fix systemsFromFile
- make use of config.projectRoot to ge relative path of systems file
2022-07-16 18:58:04 +02:00