Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
21 lines
420 B
Nix
21 lines
420 B
Nix
{
|
|
buildDartApplication,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildDartApplication {
|
|
pname = "domine";
|
|
version = "nightly-2023-08-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "breitburg";
|
|
repo = "domine";
|
|
rev = "d99d02b014d009b0201380a21ddaa57696dc77af";
|
|
sha256 = "038yfa22q7lzz85czmny3c1lkv8mjv4pq62cbmh054fqvgf3k3s4";
|
|
};
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
meta.mainProgram = "domine";
|
|
}
|