mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
15 lines
319 B
Nix
15 lines
319 B
Nix
{ pkgs }:
|
|
self: super: {
|
|
|
|
rmfuse = super.rmfuse.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/rschroll/rmfuse.git";
|
|
rev = "ac91d477cc32311c88aa7ecd1bebd6503e426ae7";
|
|
sha256 = "129n00hricsf4jkgj39bq3m5nhvy4d4yg7mcvrcgwb2546wcix0n";
|
|
};
|
|
}
|
|
);
|
|
|
|
}
|