feat: add nurl package

This commit is contained in:
matt1432 2023-10-12 10:17:08 -04:00
parent 1c8f74f2fa
commit 967c2aa2e2
3 changed files with 32 additions and 5 deletions

View file

@ -530,11 +530,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1697099613, "lastModified": 1697118309,
"narHash": "sha256-9t4kNpPiCOW/SInqCik7HsKgCz+eoCbNNrIxqAN21GA=", "narHash": "sha256-7kr8JD4Sa54jGnJz1AFjE6bFnzy4KMFsRdPvhQa0ESE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "c324f1bd5ad41d63a4721f08760480e346fbff0c", "rev": "8a488b2668191da034e571d0b015117ce47e1ae6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -543,6 +543,26 @@
"type": "github" "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": { "root": {
"inputs": { "inputs": {
"ags": "ags", "ags": "ags",
@ -553,7 +573,8 @@
"nix-melt": "nix-melt", "nix-melt": "nix-melt",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixpkgs-wayland": "nixpkgs-wayland", "nixpkgs-wayland": "nixpkgs-wayland",
"nur": "nur" "nur": "nur",
"nurl": "nurl"
} }
}, },
"systems": { "systems": {

View file

@ -37,6 +37,11 @@
url = "github:nix-community/nix-melt"; url = "github:nix-community/nix-melt";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nurl = {
url = "github:nix-community/nurl";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { self, nixpkgs, home-manager, nur, ... }@attrs: { outputs = { self, nixpkgs, home-manager, nur, ... }@attrs: {

View file

@ -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; waypkgs = nixpkgs-wayland.packages.x86_64-linux;
in in
{ {
@ -27,6 +27,7 @@ in
home.packages = [ home.packages = [
nix-melt.packages.x86_64-linux.default nix-melt.packages.x86_64-linux.default
nurl.packages.x86_64-linux.default
] ++ ] ++
(with pkgs.python311Packages; [ (with pkgs.python311Packages; [