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

21 lines
514 B
Nix
Raw Normal View History

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