chore: Update to latest nixos-unstable release

This commit is contained in:
Donovan Glover 2024-08-03 19:44:23 -04:00
parent 1c668bde68
commit 817629fb0a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
5 changed files with 4 additions and 57 deletions

View File

@ -201,16 +201,15 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1721924089,
"narHash": "sha256-XfIZ6V8cks3a20ONHMeQjF+A/d/rH0I8IXmvA30EAig=",
"lastModified": 1722728275,
"narHash": "sha256-NRxSDV77Ro052VyVxyNspwQycJEhpIy0bUL28pbaWS4=",
"owner": "donovanglover",
"repo": "nixpkgs",
"rev": "e8aa612d4127ed9d4ce9e5b4ed8163121af43912",
"rev": "3b8d263ae6133c5d94b09ecab74a220bd72759a8",
"type": "github"
},
"original": {
"owner": "donovanglover",
"ref": "unstable-phosh-0.40.0",
"repo": "nixpkgs",
"type": "github"
}

View File

@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = "github:donovanglover/nixpkgs/unstable-phosh-0.40.0";
nixpkgs.url = "github:donovanglover/nixpkgs";
home-manager = {
url = "github:nix-community/home-manager";

View File

@ -185,8 +185,6 @@ in
grim
wl-clipboard-rs
;
inherit (pkgs.xfce) exo;
})
];

View File

@ -1,14 +0,0 @@
final: prev: {
xdg-desktop-portal-hyprland = prev.xdg-desktop-portal-hyprland.overrideAttrs (oldAttrs: rec {
version = "1.3.3";
src = prev.fetchFromGitHub {
owner = "hyprwm";
repo = "xdg-desktop-portal-hyprland";
rev = "v${version}";
hash = "sha256-cyyxu/oj4QEFp3CVx2WeXa9T4OAUyynuBJHGkBZSxJI=";
};
patches = [ ];
});
}

View File

@ -1,36 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
cmake,
}:
rustPlatform.buildRustPackage {
pname = "rmpc";
version = "0.2.1-unstable-2024-07-27";
src = fetchFromGitHub {
owner = "mierak";
repo = "rmpc";
rev = "f12be6f606f5319523f41576e7c463b6008b9069";
hash = "sha256-mKTl2sZdrkecd9fMBllHC0YiVHK8rUdoRmN2YF4T9O0=";
};
cargoHash = "sha256-/00WGuuxtwtpNuEEeapJhVedbg3RMUtTEQbYYu518po=";
cargoPatches = [ ../assets/rmpc-support-older-rustc.patch ];
nativeBuildInputs = [
pkg-config
cmake
];
meta = {
description = "Configurable, terminal-based media player client with album art support via kitty image protocol";
homepage = "https://github.com/mierak/rmpc";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ donovanglover ];
mainProgram = "rmpc";
};
}