summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix')
-rw-r--r--pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix b/pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix
new file mode 100644
index 000000000000..3a35a87ceafc
--- /dev/null
+++ b/pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl, pkgconfig, gnome3
+, gtk3, glib, gobjectIntrospection, libarchive
+}:
+
+stdenv.mkDerivation rec {
+  inherit (import ./src.nix fetchurl) name src;
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ gtk3 glib ];
+  propagatedBuildInputs = [ libarchive gobjectIntrospection ];
+
+  meta = with stdenv.lib; {
+    platforms = platforms.linux;
+    maintainers = gnome3.maintainers;
+    license = licenses.lgpl21;
+    description = "Library to integrate compressed files management with GNOME";
+  };
+}