1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 03:53:41 +00:00
nixpkgs/pkgs/development/tools/ameba/default.nix

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-02-25 06:44:46 +00:00
version = "0.14.0";
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-02-25 06:44:46 +00:00
sha256 = "sha256-9oLVv0fCJzYyBApR4yzQKc25Uz9X5Rrvj638yD0JDMU=";
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 ];
};
}