mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
f5fa5fa4d6
* 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
25 lines
684 B
Nix
25 lines
684 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "delve-${version}";
|
|
version = "0.12.1";
|
|
|
|
goPackagePath = "github.com/derekparker/delve";
|
|
excludedPackages = "\\(_fixtures\\|scripts\\|service/test\\)";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "derekparker";
|
|
repo = "delve";
|
|
rev = "v${version}";
|
|
sha256 = "0vkyx9sd66yrqz9sa4pysmpjv6gdgpfk1icrbjk93h2ry15ma8d6";
|
|
};
|
|
|
|
meta = {
|
|
description = "debugger for the Go programming language";
|
|
homepage = https://github.com/derekparker/delve;
|
|
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|