nixpkgs/pkgs/tools/system/ctop/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

26 lines
623 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "ctop-unstable-${version}";
version = "2017-05-28";
rev = "b4e1fbf29073625ec803025158636bdbcf2357f4";
goPackagePath = "github.com/bcicen/ctop";
src = fetchFromGitHub {
inherit rev;
owner = "bcicen";
repo = "ctop";
sha256 = "162pc7gds66cgznqlq9gywr0qij5pymn7xszlq9rn4w2fm64qgg3";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "Concise commandline monitoring for containers";
homepage = http://ctop.sh/;
license = licenses.mit;
maintainers = with maintainers; [ apeyroux ];
};
}