Remove src input to try and avoid getting told off about relative paths
This commit is contained in:
parent
1cd0b9887a
commit
4216243dcf
13
flake.lock
13
flake.lock
|
@ -50,22 +50,9 @@
|
|||
"inputs": {
|
||||
"naersk": "naersk",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"src": "src",
|
||||
"utils": "utils"
|
||||
}
|
||||
},
|
||||
"src": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"narHash": "sha256-MGP5pSluHmnG0XKKLGrXPWv1bYx55iw6t6TNnr9xrs0=",
|
||||
"path": "./.",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "./.",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
"utils": {
|
||||
"locked": {
|
||||
"lastModified": 1652776076,
|
||||
|
|
|
@ -4,11 +4,9 @@
|
|||
inputs = {
|
||||
utils.url = "github:numtide/flake-utils";
|
||||
naersk.url = "github:nix-community/naersk";
|
||||
src.url = "path:./.";
|
||||
src.flake = false;
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, utils, naersk, src }:
|
||||
outputs = { self, nixpkgs, utils, naersk }:
|
||||
utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = nixpkgs.legacyPackages."${system}";
|
||||
naersk-lib = naersk.lib."${system}";
|
||||
|
@ -16,7 +14,7 @@
|
|||
# `nix build`
|
||||
packages.yama = naersk-lib.buildPackage {
|
||||
pname = "yama";
|
||||
root = src;
|
||||
root = ./.;
|
||||
|
||||
buildInputs = with pkgs; [
|
||||
openssl
|
||||
|
|
Loading…
Reference in New Issue