- overlays/{linux,wine-osu}.nix -> packages/{linux-lava,wine-osu}/
- overlays/misc/ -> overlays/patches/
- overlays/misc/0001...patch -> packages/linux-lava/si...patch
- overlays/misc/wine/ -> packages/wine-osu/patches/
- flake.nix:
- overlays are dynamically read from overlays/
- define custom packages separately
- packages/*
- now imported using callPackage
13 lines
342 B
Nix
13 lines
342 B
Nix
self: super: {
|
|
transcrypt = super.transcrypt.overrideAttrs(o: rec {
|
|
version = "2.1.0";
|
|
|
|
patches = [ ./patches/transcrypt.patch ];
|
|
src = super.fetchFromGitHub {
|
|
owner = "elasticdog";
|
|
repo = "transcrypt";
|
|
rev = "v${version}";
|
|
sha256 = "0bpz1hazbhfb6pqi68x55kq6a31bgh6vwij836slmi4jqiwvnh5a";
|
|
};
|
|
});
|
|
}
|