bump inputs, import bundler without flake inputs

This commit is contained in:
illustris 2024-01-12 23:52:47 +05:30
parent 2b4be475b6
commit 4416fbb6fe
Signed by: illustris
GPG Key ID: 56C8FC0B899FEFA3
2 changed files with 9 additions and 35 deletions

40
flake.lock generated
View File

@ -1,18 +1,13 @@
{ {
"nodes": { "nodes": {
"debBundler": { "debBundler": {
"inputs": { "flake": false,
"home-manager": "home-manager",
"nixpkgs": [
"nixpkgs"
]
},
"locked": { "locked": {
"lastModified": 1699154900, "lastModified": 1705083181,
"narHash": "sha256-y+PK9ToYcAyY86EoM7Iam7gC++rCuAGndlnPTEzd3EA=", "narHash": "sha256-o1zolChrQk7UpMmFLjymjQWuoDIL1XStV56kuOprMDQ=",
"owner": "illustris", "owner": "illustris",
"repo": "flake", "repo": "flake",
"rev": "a56221a54571b0e4326af29cf75b4cec081b8de7", "rev": "6a9df656834b5111f7ffb0b1f6d97a0d8700de58",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -21,34 +16,13 @@
"type": "github" "type": "github"
} }
}, },
"home-manager": {
"inputs": {
"nixpkgs": [
"debBundler",
"nixpkgs"
]
},
"locked": {
"lastModified": 1699025595,
"narHash": "sha256-e+o4PoSu2Z6Ww8y/AVUmMU200rNZoRK+p2opQ7Db8Rg=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "8765d4e38aa0be53cdeee26f7386173e6c65618d",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1699099776, "lastModified": 1704722960,
"narHash": "sha256-X09iKJ27mGsGambGfkKzqvw5esP1L/Rf8H3u3fCqIiU=", "narHash": "sha256-mKGJ3sPsT6//s+Knglai5YflJUF2DGj7Ai6Ynopz0kI=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "85f1ba3e51676fa8cc604a3d863d729026a6b8eb", "rev": "317484b1ead87b9c1b8ac5261a8d2dd748a0492d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -5,7 +5,7 @@ rec {
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable; nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
debBundler = { debBundler = {
url = github:illustris/flake; url = github:illustris/flake;
inputs.nixpkgs.follows = "nixpkgs"; flake = false;
}; };
}; };
@ -28,7 +28,7 @@ rec {
}; };
}; };
default = pvemon; default = pvemon;
deb = debBundler.bundlers.x86_64-linux.deb default; deb = (import "${debBundler}/bundlers/deb" { inherit pkgs; }) default;
updateRelease = writeScriptBin "update-release" (builtins.readFile ./utils/update-release.sh); updateRelease = writeScriptBin "update-release" (builtins.readFile ./utils/update-release.sh);
}; };