biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / virtualization / distrobox / default.nix
blob4d5317201ad0d90d163360f47716c3055eaf1e96
1 { stdenvNoCC, lib, fetchFromGitHub, makeWrapper, wget }:
3 stdenvNoCC.mkDerivation (finalAttrs: {
4   pname = "distrobox";
5   version = "1.7.1";
7   src = fetchFromGitHub {
8     owner = "89luca89";
9     repo = "distrobox";
10     rev = finalAttrs.version;
11     hash = "sha256-mSka8QyoLjnaVEP23TtyzbPTBHDlnrSomVZdfw4PPng=";
12   };
14   dontConfigure = true;
15   dontBuild = true;
17   nativeBuildInputs = [ makeWrapper ];
19   installPhase = ''
20     runHook preInstall
22     # https://github.com/89luca89/distrobox/issues/408
23     substituteInPlace ./distrobox-generate-entry \
24       --replace 'icon_default="''${HOME}/.local' "icon_default=\"$out"
25     ./install -P $out
27     runHook postInstall
28   '';
30   # https://github.com/89luca89/distrobox/issues/407
31   postFixup = ''
32     wrapProgram "$out/bin/distrobox-generate-entry" \
33       --prefix PATH ":" ${lib.makeBinPath [ wget ]}
35     mkdir -p $out/share/distrobox
36     echo 'container_additional_volumes="/nix:/nix"' > $out/share/distrobox/distrobox.conf
37   '';
39   meta = with lib; {
40     description = "Wrapper around podman or docker to create and start containers";
41     longDescription = ''
42       Use any linux distribution inside your terminal. Enable both backward and
43       forward compatibility with software and freedom to use whatever distribution
44       you’re more comfortable with
45     '';
46     homepage = "https://distrobox.it/";
47     license = licenses.gpl3Only;
48     platforms = platforms.linux;
49     maintainers = with maintainers; [ atila ];
50   };