summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.22/misc/gnome-autoar/default.nix
blob: 3a35a87ceafc4f55878bae4733d3472a09dead04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
  };
}