nixpkgs/pkgs/development/tools/ameba/default.nix

21 lines
505 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, crystal }:
2019-10-21 08:35:26 +00:00
2020-04-19 02:57:17 +00:00
crystal.buildCrystalPackage rec {
2019-10-21 08:35:26 +00:00
pname = "ameba";
2021-03-30 08:19:15 +00:00
version = "0.14.2";
2019-10-21 08:35:26 +00:00
src = fetchFromGitHub {
2020-04-19 02:57:17 +00:00
owner = "crystal-ameba";
repo = "ameba";
rev = "v${version}";
2021-03-30 08:19:15 +00:00
sha256 = "sha256-wtUWmvAm7iTiP8eYgPiRasYjzeCIJCQd3D+8f1kMONA=";
2019-10-21 08:35:26 +00:00
};
meta = with lib; {
2019-10-21 08:35:26 +00:00
description = "A static code analysis tool for Crystal";
2020-03-29 00:34:11 +00:00
homepage = "https://crystal-ameba.github.io";
2019-10-21 08:35:26 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kimburgess ];
};
}