Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a105345624f9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c0a8c81cf295
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 29, 2020

  1. ameba: 0.11.0 -> 0.12.0

    r-ryantm committed Mar 29, 2020
    Copy the full SHA
    9aba9a3 View commit details

Commits on Mar 30, 2020

  1. Merge pull request #83634 from r-ryantm/auto-update/ameba

    ameba: 0.11.0 -> 0.12.0
    marsam authored Mar 30, 2020
    Copy the full SHA
    c0a8c81 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/ameba/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/ameba/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "ameba";
version = "0.11.0";
version = "0.12.0";

src = fetchFromGitHub {
owner = "crystal-ameba";
repo = "ameba";
rev = "v${version}";
sha256 = "0zjv59f555q2w8ahrvmpdzasrifwjgr0mk6rly9yss4ab3rj8cy2";
sha256 = "0g68yijbm2j4ig536fwq49d1z7x2iv9kp4g3gjklf5zn1sbqhm12";
};

nativeBuildInputs = [ crystal shards ];
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A static code analysis tool for Crystal";
homepage = https://crystal-ameba.github.io;
homepage = "https://crystal-ameba.github.io";
license = licenses.mit;
maintainers = with maintainers; [ kimburgess ];
};