treewide: Per RFC45, remove all unquoted URLs

This commit is contained in:
Michael Reilly
2020-03-31 21:11:51 -04:00
committed by Jörg Thalheim
parent bf5eb87033
commit 84cf00f980
9648 changed files with 15370 additions and 15370 deletions

View File

@@ -23,7 +23,7 @@ mkDerivation rec {
meta = with lib; {
description = "Heap memory profiler for Linux";
homepage = https://github.com/KDE/heaptrack;
homepage = "https://github.com/KDE/heaptrack";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ gebner ];
platforms = platforms.linux;

View File

@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
modules, the kernel, shared libraries, and applications.
'';
license = stdenv.lib.licenses.gpl2;
homepage = http://oprofile.sourceforge.net/;
homepage = "http://oprofile.sourceforge.net/";
platforms = stdenv.lib.platforms.linux;
maintainers = [ ];

View File

@@ -18,7 +18,7 @@ buildGoPackage rec {
meta = with stdenv.lib; {
description = "A tool for visualization and analysis of profiling data";
homepage = https://github.com/google/pprof;
homepage = "https://github.com/google/pprof";
license = licenses.asl20;
longDescription = ''
pprof reads a collection of profiling samples in profile.proto format and generates reports to visualize and help analyze the data. It can generate both text and graphical reports (through the use of the dot visualization package).

View File

@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "System-wide profiler for Linux";
homepage = https://wiki.gnome.org/Apps/Sysprof;
homepage = "https://wiki.gnome.org/Apps/Sysprof";
longDescription = ''
Sysprof is a sampling CPU profiler for Linux that uses the perf_event_open
system call to profile the entire system, not just a single

View File

@@ -4,7 +4,7 @@
let
## fetchgit info
url = git://sourceware.org/git/systemtap.git;
url = "git://sourceware.org/git/systemtap.git";
rev = "release-${version}";
sha256 = "0mmpiq7bsrwhp7z07a1pwka4q6d2fbmdx5wp83nxj31rvdxhqwnw";
version = "4.1";
@@ -40,7 +40,7 @@ in runCommand "systemtap-${kernel.version}-${version}" {
inherit stapBuild kernelBuildDir;
buildInputs = [ makeWrapper ];
meta = {
homepage = https://sourceware.org/systemtap/;
homepage = "https://sourceware.org/systemtap/";
repositories.git = url;
description = "Provides a scripting language for instrumentation on a live kernel plus user-space";
license = lib.licenses.gpl2;