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 06:30:32 +00:00
{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, wget }:
2022-02-16 02:02:35 +00:00
stdenvNoCC.mkDerivation rec {
pname = "distrobox";
2023-06-28 08:22:59 +00:00
version = "1.5.0.2";
2022-02-16 02:02:35 +00:00
src = fetchFromGitHub {
owner = "89luca89";
repo = pname;
rev = version;
2023-06-28 08:22:59 +00:00
sha256 = "sha256-ss8049D6n1V/gDzEMjywDnoke5s2we9j3mO8yta72UA=";
2022-02-16 02:02:35 +00:00
};
dontConfigure = true;
dontBuild = true;
2022-09-11 06:30:32 +00:00
nativeBuildInputs = [ makeWrapper ];
2022-02-16 02:02:35 +00:00
installPhase = ''
runHook preInstall
2022-09-11 06:30:32 +00: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 02:02:35 +00:00
runHook postInstall
'';
2022-09-11 06:30:32 +00:00
# https://github.com/89luca89/distrobox/issues/407
postFixup = ''
wrapProgram "$out/bin/distrobox-generate-entry" \
--prefix PATH ":" ${lib.makeBinPath [ wget ]}
'';
2022-02-16 02:02:35 +00: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.linux;
2022-02-16 02:02:35 +00:00
maintainers = with maintainers; [ atila ];
};
}