Merge pull request #41162 from ryantm/name-format

treewide: fix derivation names
This commit is contained in:
Matthew Justin Bauer
2018-05-28 13:58:17 -04:00
committed by GitHub
59 changed files with 131 additions and 119 deletions

View File

@@ -1,13 +1,13 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "bosun";
rev = "0.5.0";
name = "bosun-${version}";
version = "0.5.0";
src = fetchFromGitHub {
inherit rev;
owner = "bosun-monitor";
repo = "bosun";
rev = version;
sha256 = "1qj97wiqj6awivvac1n00k0x8wdv4ambzdj4502nmmnr5rdbqq88";
};