5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, wget }:
|
||
|
||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||
pname = "distrobox";
|
||
version = "1.5.0.2";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "89luca89";
|
||
repo = finalAttrs.pname;
|
||
rev = finalAttrs.version;
|
||
hash = "sha256-ss8049D6n1V/gDzEMjywDnoke5s2we9j3mO8yta72UA=";
|
||
};
|
||
|
||
dontConfigure = true;
|
||
dontBuild = true;
|
||
|
||
nativeBuildInputs = [ makeWrapper ];
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
# https://github.com/89luca89/distrobox/issues/408
|
||
substituteInPlace ./distrobox-generate-entry \
|
||
--replace 'icon_default="''${HOME}/.local' "icon_default=\"$out"
|
||
./install -P $out
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
# https://github.com/89luca89/distrobox/issues/407
|
||
postFixup = ''
|
||
wrapProgram "$out/bin/distrobox-generate-entry" \
|
||
--prefix PATH ":" ${lib.makeBinPath [ wget ]}
|
||
'';
|
||
|
||
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
|
||
you’re more comfortable with
|
||
'';
|
||
homepage = "https://distrobox.privatedns.org/";
|
||
license = licenses.gpl3Only;
|
||
platforms = platforms.linux;
|
||
maintainers = with maintainers; [ atila ];
|
||
};
|
||
})
|