Add jj to the set
This commit is contained in:
parent
11ed873fa3
commit
46ce17d6ac
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"makefile.extensionOutputFolder": "./.vscode"
|
||||
}
|
@ -92,6 +92,7 @@
|
||||
inputs.sile
|
||||
inputs.runwhen
|
||||
inputs.durnitisp
|
||||
inputs.jj
|
||||
# TODO add sonic-pi here if it supports the arch
|
||||
];
|
||||
|
||||
|
43
nix/darwin/flake.lock
generated
43
nix/darwin/flake.lock
generated
@ -132,6 +132,24 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"jj": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs_2"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1657821556,
|
||||
"narHash": "sha256-t4B8sC31ZFt/Z1pN+79bhfDYUoMvW5dNbFiWyglPAvs=",
|
||||
"owner": "martinvonz",
|
||||
"repo": "jj",
|
||||
"rev": "92fc2ceb5f431530d2e1238efbb24e9d3e276b68",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "martinvonz",
|
||||
"repo": "jj",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"naersk": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
@ -152,7 +170,7 @@
|
||||
},
|
||||
"naersk_2": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs_3"
|
||||
"nixpkgs": "nixpkgs_4"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1650101877,
|
||||
@ -183,6 +201,20 @@
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1651634615,
|
||||
"narHash": "sha256-VtvcS61bLh5mIBm9cV3idUHdlfPRFus/NwdJfaj5s8o=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "abfd31179174133ab8131139d650297bf4da63b7",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1653328845,
|
||||
"narHash": "sha256-NKc98+iX8YH500np1zWZSQ2C+FoD9sS/nuH02Rg2ats=",
|
||||
@ -198,7 +230,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_3": {
|
||||
"nixpkgs_4": {
|
||||
"locked": {
|
||||
"lastModified": 1650109093,
|
||||
"narHash": "sha256-tqlnKrAdJktRLXTou9le0oTqrYBAFpGscV5RADdpArU=",
|
||||
@ -212,7 +244,7 @@
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"nixpkgs_4": {
|
||||
"nixpkgs_5": {
|
||||
"locked": {
|
||||
"lastModified": 1650222748,
|
||||
"narHash": "sha256-AHh/goEfG5hlhIMVgGQwACbuv5Wit2ND9vrcB4QthJs=",
|
||||
@ -231,7 +263,8 @@
|
||||
"inputs": {
|
||||
"darwin": "darwin",
|
||||
"durnitisp": "durnitisp",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"jj": "jj",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"runwhen": "runwhen",
|
||||
"rust-overlay": "rust-overlay_2"
|
||||
}
|
||||
@ -241,7 +274,7 @@
|
||||
"flake-compat": "flake-compat_2",
|
||||
"flake-utils": "flake-utils_2",
|
||||
"naersk": "naersk_2",
|
||||
"nixpkgs": "nixpkgs_4",
|
||||
"nixpkgs": "nixpkgs_5",
|
||||
"rust-overlay": "rust-overlay"
|
||||
},
|
||||
"locked": {
|
||||
|
@ -11,9 +11,10 @@
|
||||
url = "github:oxalica/rust-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
jj.url = "github:martinvonz/jj";
|
||||
};
|
||||
|
||||
outputs = {self, nixpkgs, darwin, runwhen, durnitisp, rust-overlay }:
|
||||
outputs = {self, nixpkgs, darwin, runwhen, durnitisp, rust-overlay, jj }:
|
||||
let
|
||||
forSystem = (system:
|
||||
let
|
||||
@ -30,6 +31,7 @@
|
||||
rust-overlay = rust-overlay.overlay;
|
||||
#TODO(jwall): when the libtexpdf issue is fixed we can stop doing this
|
||||
sile = pkgs.sile.overrideAttrs(oldAttrs: { doCheck = false; });
|
||||
jj = jj.defaultPackage."${system}";
|
||||
};
|
||||
});
|
||||
in
|
||||
|
Loading…
x
Reference in New Issue
Block a user