mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
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.
34 lines
896 B
Nix
34 lines
896 B
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, openssh }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rdocker";
|
|
version = "unstable-2018-07-17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dvddarias";
|
|
repo = "rdocker";
|
|
rev = "949377de0154ade2d28c6d4c4ec33b65ea813b5a";
|
|
sha256 = "1mwg9zh144q4fqk9016v2d347vzch8sxlixaxrz0ci9dxvs6ibd4";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
install -Dm755 rdocker.sh $out/bin/rdocker
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/rdocker \
|
|
--prefix PATH : ${lib.makeBinPath [ openssh ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Securely control a remote docker daemon CLI using ssh forwarding, no SSL setup needed";
|
|
mainProgram = "rdocker";
|
|
homepage = "https://github.com/dvddarias/rdocker";
|
|
maintainers = [ lib.maintainers.pneumaticat ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|