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": {
"debBundler": {
"inputs": {
"home-manager": "home-manager",
"nixpkgs": [
"nixpkgs"
]
},
"flake": false,
"locked": {
"lastModified": 1699154900,
"narHash": "sha256-y+PK9ToYcAyY86EoM7Iam7gC++rCuAGndlnPTEzd3EA=",
"lastModified": 1705083181,
"narHash": "sha256-o1zolChrQk7UpMmFLjymjQWuoDIL1XStV56kuOprMDQ=",
"owner": "illustris",
"repo": "flake",
"rev": "a56221a54571b0e4326af29cf75b4cec081b8de7",
"rev": "6a9df656834b5111f7ffb0b1f6d97a0d8700de58",
"type": "github"
},
"original": {
@ -21,34 +16,13 @@
"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": {
"locked": {
"lastModified": 1699099776,
"narHash": "sha256-X09iKJ27mGsGambGfkKzqvw5esP1L/Rf8H3u3fCqIiU=",
"lastModified": 1704722960,
"narHash": "sha256-mKGJ3sPsT6//s+Knglai5YflJUF2DGj7Ai6Ynopz0kI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "85f1ba3e51676fa8cc604a3d863d729026a6b8eb",
"rev": "317484b1ead87b9c1b8ac5261a8d2dd748a0492d",
"type": "github"
},
"original": {

View File

@ -5,7 +5,7 @@ rec {
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
debBundler = {
url = github:illustris/flake;
inputs.nixpkgs.follows = "nixpkgs";
flake = false;
};
};
@ -28,7 +28,7 @@ rec {
};
};
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);
};