nixpkgs/pkgs/tools/filesystems/rmfuse/poetry-git-overlay.nix

15 lines
319 B
Nix
Raw Normal View History

2021-02-18 08:39:37 +00:00
{ pkgs }:
self: super: {
rmfuse = super.rmfuse.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/rschroll/rmfuse.git";
2021-03-14 16:53:26 +00:00
rev = "fca03bcdd6dc118f2ba981410ec9dff7f7cb88ec";
sha256 = "0i7dvvi2bp3hydjpzvr7vg10bx0wxz87spf7pg455aga8d0qhxgk";
2021-02-18 08:39:37 +00:00
};
}
);
}