-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0ba4d1
commit c42d58f
Showing
9 changed files
with
6,245 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
build x: | ||
nix build ./.#packages.$(nix eval --impure --expr "builtins.currentSystem").{{x}} --no-link --print-out-paths --print-build-logs | ||
|
||
# Run an individual check | ||
check x: | ||
nix build ./.#checks.$(nix eval --impure --expr "builtins.currentSystem").{{x}} --no-link --print-out-paths --print-build-logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ inputs, system }: | ||
let | ||
nixpkgs = import inputs.nixpkgs-stable { inherit system; config = { }; }; | ||
inherit (nixpkgs) fetchFromGitHub mkYarnPackage fetchYarnDeps nodejs makeWrapper; | ||
in | ||
{ | ||
locize-cli-8-0-1 = mkYarnPackage rec | ||
{ | ||
pname = "locize-cli"; | ||
version = "8.0.1"; | ||
src = fetchFromGitHub { | ||
owner = "locize"; | ||
repo = "locize-cli"; | ||
rev = "v8.0.1"; | ||
hash = "sha256-yosx7bCH6ewlGz5Uz7VxcCu2zEiFxFhq/e6OIDGk27k="; | ||
}; | ||
packageJSON = "${src}/package.json"; | ||
yarnLock = ./yarn.lock; | ||
offlineCache = fetchYarnDeps { | ||
yarnLock = ./yarn.lock; | ||
hash = "sha256-R+QWAIphbCLNKcMH9XMF74JQmRdzxIYeeVqH6xlF6T4="; | ||
}; | ||
yarnNix = ./yarn.nix; | ||
nativeBuildInputs = [ makeWrapper ]; | ||
}; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.