571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
1000 B
Nix
42 lines
1000 B
Nix
{ lib, stdenv, fetchurl, dpkg, autoPatchelfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sslmate-agent";
|
|
version = "1.99.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://packages.sslmate.com/debian/pool/sslmate2/s/sslmate-client/${pname}_${version}-1_amd64.deb";
|
|
sha256 = "sha256-LBiZI0pGAFWnvTigEhtkhHq4FGdbYiMzjLheMuP0YTU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
autoPatchelfHook
|
|
];
|
|
|
|
unpackCmd = ''
|
|
dpkg-deb -x ${src} ./sslmate-agent-${pname}
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
# Not moving etc because it only contains init.rd setttings
|
|
mv usr $out
|
|
mv lib $out
|
|
|
|
substituteInPlace $out/lib/systemd/system/sslmate-agent.service \
|
|
--replace "/usr/s" "$out/"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Daemon for managing SSL/TLS certificates on a server";
|
|
homepage = "https://sslmate.com/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = [ ];
|
|
};
|
|
}
|