3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/ameba/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
505 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, crystal }:
2019-10-21 09:35:26 +01:00
2020-04-19 03:57:17 +01:00
crystal.buildCrystalPackage rec {
2019-10-21 09:35:26 +01:00
pname = "ameba";
2021-04-22 05:50:48 +01:00
version = "0.14.3";
2019-10-21 09:35:26 +01:00
src = fetchFromGitHub {
2020-04-19 03:57:17 +01:00
owner = "crystal-ameba";
repo = "ameba";
rev = "v${version}";
2021-04-22 05:50:48 +01:00
sha256 = "sha256-oZdaHV+vnYUiCXNMrSuHvZzDYDgFZsoD715DE3tJ2bE=";
2019-10-21 09:35:26 +01:00
};
meta = with lib; {
2019-10-21 09:35:26 +01: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 09:35:26 +01:00
license = licenses.mit;
maintainers = with maintainers; [ kimburgess ];
};
}