mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +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
20 lines
575 B
Nix
20 lines
575 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication {
|
|
name = "gprof2dot-2015-04-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jrfonseca";
|
|
repo = "gprof2dot";
|
|
rev = "6fbb81559609c12e7c64ae5dce7d102a414a7514";
|
|
sha256 = "1fff7w6dm6lld11hp2ij97f85ma1154h62dvchq19c5jja3zjw3c";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/jrfonseca/gprof2dot;
|
|
description = "Python script to convert the output from many profilers into a dot graph";
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|