chore(deps): update flake deps

This commit is contained in:
dusk 2021-05-14 22:17:10 +03:00
parent 86b4218b14
commit 1614ff6866
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
3 changed files with 42 additions and 29 deletions

View File

@ -85,30 +85,6 @@
"type": "github"
}
},
"devlib": {
"inputs": {
"deploy": "deploy",
"devshell": "devshell",
"nixlib": "nixlib",
"nixpkgs": [
"nixos"
],
"utils": "utils_2"
},
"locked": {
"lastModified": 1621012625,
"narHash": "sha256-xRBbDpQDUz3mSwL2WoePz6c3zIUtZ2ML3qW0B9CVspU=",
"owner": "divnix",
"repo": "devlib",
"rev": "b0de71f4924e513e21d21a0ec60a2cb180f2187c",
"type": "github"
},
"original": {
"owner": "divnix",
"repo": "devlib",
"type": "github"
}
},
"devshell": {
"locked": {
"lastModified": 1618523768,
@ -124,6 +100,28 @@
"type": "github"
}
},
"digga": {
"inputs": {
"deploy": "deploy",
"devshell": "devshell",
"nixlib": "nixlib",
"nixpkgs": "nixpkgs_2",
"utils": "utils_2"
},
"locked": {
"lastModified": 1621012625,
"narHash": "sha256-xRBbDpQDUz3mSwL2WoePz6c3zIUtZ2ML3qW0B9CVspU=",
"owner": "divnix",
"repo": "digga",
"rev": "b0de71f4924e513e21d21a0ec60a2cb180f2187c",
"type": "github"
},
"original": {
"owner": "divnix",
"repo": "digga",
"type": "github"
}
},
"flake-compat": {
"flake": false,
"locked": {
@ -379,6 +377,21 @@
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1620962350,
"narHash": "sha256-9ASW4d4/Z8HmRvuJI8rxbEOTbXTBpQ8y+CmFYBwtXzE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5d4a430472cafada97888cc80672fab255231f57",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"type": "github"
}
},
"nur": {
"locked": {
"lastModified": 1621012357,
@ -429,7 +442,7 @@
"inputs": {
"ci-agent": "ci-agent",
"darwin": "darwin",
"devlib": "devlib",
"digga": "digga",
"home": "home",
"latest": "latest",
"naersk": "naersk_2",

View File

@ -1,7 +1,7 @@
{ self, config, pkgs, lib, ... }:
{ self, config, pkgs, lib, ourLib, ... }:
let
inherit (lib) fileContents mkIf;
pkgBin = pkgs.ourlib.pkgBinNoDep pkgs;
pkgBin = ourLib.pkgBinNoDep pkgs;
coreBin = v: "${pkgs.coreutils}/bin/${v}";
nixBin = "${config.nix.package}/bin/nix";

View File

@ -1,8 +1,8 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, ourLib, ... }:
let
inherit (lib) mapAttrs' nameValuePair;
inherit (builtins) readDir fetchGit;
pkgBin = pkgs.ourlib.pkgBinNoDep pkgs;
pkgBin = ourLib.pkgBinNoDep pkgs;
nixosConfig = config;
in