mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
shittier: init at unstable-2023-12-22
This commit is contained in:
parent
2104e113a0
commit
560f6dfb3e
28
pkgs/by-name/sh/shittier/package.nix
Normal file
28
pkgs/by-name/sh/shittier/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildNpmPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildNpmPackage rec {
|
||||
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";
|
||||
homepage = "https://github.com/rohitdhas/shittier";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ totoroot ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user