add transcrypt

This commit is contained in:
LavaDesu 2021-05-28 14:56:53 +07:00
parent 49ab67155a
commit 2a681be60e
Signed by: cilly
GPG key ID: 6500251E087653C9
4 changed files with 60 additions and 0 deletions

13
overlays/transcrypt.nix Normal file
View file

@ -0,0 +1,13 @@
self: super: {
transcrypt = super.transcrypt.overrideAttrs(o: rec {
version = "2.1.0";
patches = [ ./misc/transcrypt.patch ];
src = super.fetchFromGitHub {
owner = "elasticdog";
repo = "transcrypt";
rev = "v${version}";
sha256 = "0bpz1hazbhfb6pqi68x55kq6a31bgh6vwij836slmi4jqiwvnh5a";
};
});
}