nixpkgs/pkgs/applications/virtualization/distrobox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
Nix
Raw Normal View History

2022-09-11 08:30:32 +02:00
{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, wget }:
2022-02-16 03:02:35 +01:00
stdenvNoCC.mkDerivation rec {
pname = "distrobox";
2022-09-11 08:30:32 +02:00
version = "1.4.0";
2022-02-16 03:02:35 +01:00
src = fetchFromGitHub {
owner = "89luca89";
repo = pname;
rev = version;
2022-09-11 08:30:32 +02:00
sha256 = "sha256-XYqPwBiMbwG0bTiFRywZRWjp1OabTHcwhmbcx11SgPo=";
2022-02-16 03:02:35 +01:00
};
dontConfigure = true;
dontBuild = true;
2022-09-11 08:30:32 +02:00
nativeBuildInputs = [ makeWrapper ];
2022-02-16 03:02:35 +01:00
installPhase = ''
runHook preInstall
2022-09-11 08:30:32 +02:00
# https://github.com/89luca89/distrobox/issues/408
substituteInPlace ./distrobox-generate-entry \
--replace 'icon_default="''${HOME}/.local' "icon_default=\"$out"
./install -P $out
2022-02-16 03:02:35 +01:00
runHook postInstall
'';
2022-09-11 08:30:32 +02:00
# https://github.com/89luca89/distrobox/issues/407
postFixup = ''
wrapProgram "$out/bin/distrobox-generate-entry" \
--prefix PATH ":" ${lib.makeBinPath [ wget ]}
'';
2022-02-16 03:02:35 +01:00
meta = with lib; {
description = "Wrapper around podman or docker to create and start containers";
longDescription = ''
Use any linux distribution inside your terminal. Enable both backward and
forward compatibility with software and freedom to use whatever distribution
youre more comfortable with
'';
homepage = "https://distrobox.privatedns.org/";
license = licenses.gpl3Only;
platforms = platforms.all;
maintainers = with maintainers; [ atila ];
};
}