feat: add nurl package
This commit is contained in:
parent
1c8f74f2fa
commit
967c2aa2e2
3 changed files with 32 additions and 5 deletions
|
@ -530,11 +530,11 @@
|
|||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1697099613,
|
||||
"narHash": "sha256-9t4kNpPiCOW/SInqCik7HsKgCz+eoCbNNrIxqAN21GA=",
|
||||
"lastModified": 1697118309,
|
||||
"narHash": "sha256-7kr8JD4Sa54jGnJz1AFjE6bFnzy4KMFsRdPvhQa0ESE=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "c324f1bd5ad41d63a4721f08760480e346fbff0c",
|
||||
"rev": "8a488b2668191da034e571d0b015117ce47e1ae6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -543,6 +543,26 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nurl": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1697039025,
|
||||
"narHash": "sha256-ex0Jk/G5MOhlRuVyO1rE15/cNakFWQGJZGbtrHvbNWg=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nurl",
|
||||
"rev": "38ccd5dcdcce49498e604a30b590107cbbe7feb8",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "nurl",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"ags": "ags",
|
||||
|
@ -553,7 +573,8 @@
|
|||
"nix-melt": "nix-melt",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"nixpkgs-wayland": "nixpkgs-wayland",
|
||||
"nur": "nur"
|
||||
"nur": "nur",
|
||||
"nurl": "nurl"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
|
|
|
@ -37,6 +37,11 @@
|
|||
url = "github:nix-community/nix-melt";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nurl = {
|
||||
url = "github:nix-community/nurl";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, nur, ... }@attrs: {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, config, nixpkgs-wayland, nix-melt, ... }: let
|
||||
{ pkgs, config, nixpkgs-wayland, nix-melt, nurl, ... }: let
|
||||
waypkgs = nixpkgs-wayland.packages.x86_64-linux;
|
||||
in
|
||||
{
|
||||
|
@ -27,6 +27,7 @@ in
|
|||
|
||||
home.packages = [
|
||||
nix-melt.packages.x86_64-linux.default
|
||||
nurl.packages.x86_64-linux.default
|
||||
] ++
|
||||
|
||||
(with pkgs.python311Packages; [
|
||||
|
|
Loading…
Reference in a new issue