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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
319 B
Nix
Raw Normal View History

2021-02-18 09:39:37 +01:00
{ pkgs }:
self: super: {
rmfuse = super.rmfuse.overridePythonAttrs (
_: {
src = pkgs.fetchgit {
url = "https://github.com/rschroll/rmfuse.git";
2022-04-25 06:20:59 +02:00
rev = "3796b8610c8a965a60a417fc0bf8ea5200b71fd2";
sha256 = "03qxy95jpk741b81bd38y51d4a0vynx2y1g662bci9r6m7l14yav";
2021-02-18 09:39:37 +01:00
};
}
);
}