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
28 lines
771 B
Nix
28 lines
771 B
Nix
{ fetchurl, stdenv, makeWrapper, perl, perlPackages }:
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "amtterm-${version}";
|
|
version = "1.6-1";
|
|
|
|
buildInputs = with perlPackages; [ perl SOAPLite ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
src = fetchurl {
|
|
url = "https://www.kraxel.org/cgit/amtterm/snapshot/${name}.tar.gz";
|
|
sha256 = "1jxcsqkag2bxmrnr4m6g88sln1j2d9liqlna57fj8kkc85316vlc";
|
|
};
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
postInstall =
|
|
"wrapProgram $out/bin/amttool --prefix PERL5LIB : $PERL5LIB";
|
|
|
|
meta = with stdenv.lib;
|
|
{ description = "Intel AMT® SoL client + tools";
|
|
homepage = https://www.kraxel.org/cgit/amtterm/;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.ehmry ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|