3f8be5ef33
Should be easier for people to ping me
37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
nix-update-script,
|
|
fetchFromGitHub,
|
|
}:
|
|
let
|
|
originalDrv = fetchFromGitHub {
|
|
owner = "Aylur";
|
|
repo = "astal";
|
|
rev = "7d1fac8a4b2a14954843a978d2ddde86168c75ef";
|
|
hash = "sha256-Jh4VtPcK2Ov+RTcV9FtyQRsxiJmXFQGfqX6jjM7/mgc=";
|
|
};
|
|
in
|
|
originalDrv.overrideAttrs (
|
|
final: prev: {
|
|
name = "${final.pname}-${final.version}"; # fetchFromGitHub already defines name
|
|
pname = "astal-source";
|
|
version = "0-unstable-2025-11-26";
|
|
|
|
meta = prev.meta // {
|
|
description = "Building blocks for creating custom desktop shells (source)";
|
|
longDescription = ''
|
|
Please don't use this package directly, use one of subpackages in
|
|
`astal` namespace. This package is just a `fetchFromGitHub`, which is
|
|
reused between all subpackages.
|
|
'';
|
|
maintainers = with lib.maintainers; [ PerchunPak ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
|
|
passthru = prev.passthru // {
|
|
updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
|
|
src = originalDrv;
|
|
};
|
|
}
|
|
)
|