13 lines
369 B
Nix
13 lines
369 B
Nix
|
|
# Keep until https://github.com/paperwm/PaperWM/issues/376 is fixed
|
||
|
|
self: super: {
|
||
|
|
gnomeExtensions = super.gnomeExtensions // {
|
||
|
|
paperwm = super.gnomeExtensions.paperwm.overrideDerivation (old: {
|
||
|
|
version = "pre-40.0";
|
||
|
|
src = builtins.fetchGit {
|
||
|
|
url = https://github.com/paperwm/paperwm.git;
|
||
|
|
ref = "next-release";
|
||
|
|
};
|
||
|
|
});
|
||
|
|
};
|
||
|
|
}
|