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
37 lines
833 B
Nix
37 lines
833 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "corrupter";
|
|
version = "1.0-unstable-2023-01-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "r00tman";
|
|
repo = "corrupter";
|
|
# https://github.com/r00tman/corrupter/issues/15
|
|
rev = "d7aecbb8b622a2c6fafe7baea5f718b46155be15";
|
|
hash = "sha256-GEia3wZqI/j7/dpBbL1SQLkOXZqEwanKGM4wY9nLIqE=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
# There are no tests available for this package.
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
tagPrefix = "v";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Simple image glitcher suitable for producing lockscreens";
|
|
homepage = "https://github.com/r00tman/corrupter";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.ivan770 ];
|
|
mainProgram = "corrupter";
|
|
};
|
|
}
|