trying to fix autologin keyring stuff
This commit is contained in:
parent
7ac4a11588
commit
6adf12b5de
10 changed files with 66 additions and 60 deletions
|
@ -34,7 +34,6 @@ stdenv.mkDerivation rec {
|
|||
harfbuzz
|
||||
libglvnd
|
||||
libjack2
|
||||
# libjpeg8 is required for converting jpeg's to colour palettes
|
||||
libjpeg
|
||||
libxcb
|
||||
libXcursor
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
lib,
|
||||
stdenv,
|
||||
rustPlatform,
|
||||
fetchzip,
|
||||
fetchFromGitHub,
|
||||
openssl,
|
||||
pkg-config,
|
||||
installShellFiles,
|
||||
|
@ -24,14 +24,16 @@
|
|||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rbw-latest";
|
||||
version = "1.13.2";
|
||||
version = "latest";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://git.tozt.net/rbw/snapshot/rbw-${version}.tar.gz";
|
||||
hash = "sha256-ebLbdIF+BybK7ssNtZacGWmAEwdNZh8b94QYgvcwzmM=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "doy";
|
||||
repo = "rbw";
|
||||
rev = "HEAD";
|
||||
hash = "sha256-ZgUjsfUZbvD4aJLS62sGIObzQZgdZg27sccTFvQFerk=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-xDb4shDHCbd0yuTSAt80i1aqyuhpkfd/fYF98CfXdcM=";
|
||||
cargoHash = "sha256-0LRDFT2ElhKtmSCrAeJ4YMUiVe7Ph1EGlmjqpn2GfXw=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue