flake: Remove nix-std dependency

The only thing used from this library was the toTOML which is now
handled directly in the TOML writer.
This commit is contained in:
adisbladis 2022-06-01 23:51:12 +08:00
parent a1e56fba69
commit 5d5803ff75
2 changed files with 1 additions and 18 deletions

View File

@ -31,21 +31,6 @@
"type": "github"
}
},
"nix-std": {
"locked": {
"lastModified": 1652574713,
"narHash": "sha256-HQw5VtHI4uYvWfwXtDwupP8SV/efZa3Vot5VNbH0RRU=",
"owner": "chessai",
"repo": "nix-std",
"rev": "082f38023b68f93cd3a6e3a8ddda54d3f5487c52",
"type": "github"
},
"original": {
"owner": "chessai",
"repo": "nix-std",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1654007547,
@ -66,7 +51,6 @@
"inputs": {
"flake-compat": "flake-compat",
"flake-utils": "flake-utils",
"nix-std": "nix-std",
"nixpkgs": "nixpkgs"
}
}

View File

@ -8,10 +8,9 @@
};
flake-utils.url = "github:numtide/flake-utils";
nix-std.url = "github:chessai/nix-std";
};
outputs = inputs@{ self, nixpkgs, nix-std, flake-utils, ... }:
outputs = inputs@{ self, nixpkgs, flake-utils, ... }:
let
mkMyPkgs = callPackage: import ./pkgs callPackage;
myPkgsFor = pkgs: mkMyPkgs pkgs.callPackage;