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
34 lines
686 B
Nix
34 lines
686 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, mozdevice
|
|
, mozfile
|
|
, mozinfo
|
|
, mozlog
|
|
, mozprocess
|
|
, mozprofile
|
|
, mozcrash
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mozrunner";
|
|
version = "6.13";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1d5k3a0w1iyyk6l28l65j47grq87zd207h369x4vahq02nrx2g6l";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mozdevice mozfile mozinfo mozlog mozprocess
|
|
mozprofile mozcrash ];
|
|
|
|
meta = {
|
|
description = "Mozilla application start/stop helpers";
|
|
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
|
|
license = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
};
|
|
}
|