flakes/overlays/transcrypt.nix
2021-07-15 19:59:41 +07:00

13 lines
345 B
Nix

self: super: {
transcrypt = super.transcrypt.overrideAttrs (old: rec {
version = "2.1.0";
patches = [ ./patches/transcrypt.patch ];
src = super.fetchFromGitHub {
owner = "elasticdog";
repo = "transcrypt";
rev = "v${version}";
sha256 = "0bpz1hazbhfb6pqi68x55kq6a31bgh6vwij836slmi4jqiwvnh5a";
};
});
}