Skip to content

Commit

Permalink
pods: init at 1.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda committed Sep 28, 2022
1 parent 854fdc6 commit 69e1983
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pkgs/applications/virtualization/pods/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{ lib
, stdenv
, fetchFromGitHub
, desktop-file-utils
, glib
, gtk4
, meson
, ninja
, pkg-config
, rustPlatform
, wrapGAppsHook
, gtksourceview5
, libadwaita
}:

stdenv.mkDerivation rec {
pname = "pods";
version = "1.0.0-beta.4";

src = fetchFromGitHub {
owner = "marhkb";
repo = pname;
rev = "v${version}";
sha256 = "1j5rz43860n17qcxmc5dj8sll3y593jj9zz1sfvnx4g0694sp0cl";
};

cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
sha256 = "sha256-tj0ROO8HmFWyQLYDrdywOneHz6X43dRZJFTB+aw+m7o=";
};

nativeBuildInputs = [
desktop-file-utils
glib
gtk4
meson
ninja
pkg-config
rustPlatform.cargoSetupHook
rustPlatform.rust.cargo
rustPlatform.rust.rustc
wrapGAppsHook
];

buildInputs = [
gtk4
gtksourceview5
libadwaita
];

meta = with lib; {
description = "A podman desktop application";
homepage = "https://github.com/marhkb/pods";
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
platforms = platforms.linux;
};
}
14 changes: 14 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10186,6 +10186,20 @@ with pkgs;

podman-tui = callPackage ../applications/virtualization/podman-tui { };

pods = callPackage ../applications/virtualization/pods {
# taken from #182618, remove when merged
libadwaita = libadwaita.overrideAttrs (_: rec {
version = "1.2.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "libadwaita";
rev = version;
hash = "sha256-3lH7Vi9M8k+GSrCpvruRpLrIpMoOakKbcJlaAc/FK+U=";
};
});
};

pod2mdoc = callPackage ../tools/misc/pod2mdoc { };

poedit = callPackage ../tools/text/poedit {
Expand Down

0 comments on commit 69e1983

Please sign in to comment.