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-04-22 04:50:48 +00:00
version = "0.14.3";
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-04-22 04:50:48 +00:00
sha256 = "sha256-oZdaHV+vnYUiCXNMrSuHvZzDYDgFZsoD715DE3tJ2bE=";
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 ];
};
}