Skip to content

Commit edfc6e2

Browse files
authored
fix: remove nixpkgs shim from devenv (#82)
1 parent 2098400 commit edfc6e2

File tree

3 files changed

+2
-20
lines changed

3 files changed

+2
-20
lines changed

devenv.lock

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -87,27 +87,11 @@
8787
"type": "github"
8888
}
8989
},
90-
"nixpkgs-tracy": {
91-
"locked": {
92-
"lastModified": 1758359088,
93-
"owner": "MonaMayrhofer",
94-
"repo": "nixpkgs",
95-
"rev": "f71db25afbbef6a89e2e3fcabc6d7fb18459f67a",
96-
"type": "github"
97-
},
98-
"original": {
99-
"owner": "MonaMayrhofer",
100-
"ref": "tracy-upgrade",
101-
"repo": "nixpkgs",
102-
"type": "github"
103-
}
104-
},
10590
"root": {
10691
"inputs": {
10792
"devenv": "devenv",
10893
"git-hooks": "git-hooks",
10994
"nixpkgs": "nixpkgs",
110-
"nixpkgs-tracy": "nixpkgs-tracy",
11195
"pre-commit-hooks": [
11296
"git-hooks"
11397
],

devenv.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ pkgs, config, inputs, ... }:
1+
{ pkgs, config, ... }:
22

33
{
44
packages = [
@@ -25,7 +25,7 @@
2525
pkgs.mdbook
2626

2727
# profiling
28-
inputs.nixpkgs-tracy.legacyPackages.${pkgs.system}.tracy
28+
pkgs.tracy
2929
];
3030

3131
languages.rust = {

devenv.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
inputs:
22
nixpkgs:
33
url: github:nixos/nixpkgs?ref=nixos-unstable
4-
nixpkgs-tracy:
5-
url: github:MonaMayrhofer/nixpkgs?ref=tracy-upgrade
64
rust-overlay:
75
url: github:oxalica/rust-overlay
86
inputs:

0 commit comments

Comments
 (0)