mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 11:10:03 +00:00
commit
6c8ea93c96
3
pkgs/by-name/np/nph/lock.json
Normal file
3
pkgs/by-name/np/nph/lock.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"depends": []
|
||||
}
|
36
pkgs/by-name/np/nph/package.nix
Normal file
36
pkgs/by-name/np/nph/package.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
lib,
|
||||
buildNimPackage,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildNimPackage (finalAttrs: {
|
||||
pname = "nph";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "arnetheduck";
|
||||
repo = "nph";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-9t5VeGsxyytGdu7+Uv/J+x6bmeB5+eQapbyp30iPxqs=";
|
||||
};
|
||||
|
||||
lockFile = ./lock.json;
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
$out/bin/nph tests/before
|
||||
diff tests/before tests/after -x "*.yaml"
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Opinionated code formatter for Nim";
|
||||
homepage = "https://github.com/arnetheduck/nph";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ sigmanificient ];
|
||||
mainProgram = "nph";
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue