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
31 lines
859 B
Nix
31 lines
859 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildNpmPackage {
|
|
pname = "shittier";
|
|
# No tagged release on GitHub yet
|
|
# Commit corresponds to release tagged as 0.1.1 on [npm](https://www.npmjs.com/package/shittier)
|
|
# See issue https://github.com/rohitdhas/shittier/issues/7
|
|
version = "0-unstable-2023-12-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rohitdhas";
|
|
repo = "shittier";
|
|
rev = "c61b443c06dbaa8085a88b16360941cc4ba6baa2";
|
|
hash = "sha256-qdG1PdIZGWoJI7KgJqM/fayubPbPk+od/SgKfZQADz8=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-oC9eOpoMZLZbyx9XnC4m5zzqORQWP62uRDNVZjyVnBs=";
|
|
|
|
meta = {
|
|
description = "Unconventional code formatting tool for JavaScript";
|
|
mainProgram = "shittier";
|
|
homepage = "https://github.com/rohitdhas/shittier";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ totoroot ];
|
|
};
|
|
}
|