about summary refs log tree commit diff
path: root/pkgs/development/libraries/gcab/default.nix
blob: 11308a93337e80b4c66cb4a768ed769d4bfedccb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, intltool, gobjectIntrospection, pkgconfig }:

stdenv.mkDerivation rec {
  name = "gcab-${version}";
  version = "0.7";

  src = fetchurl {
    url = "mirror://gnome/sources/gcab/${version}/${name}.tar.xz";
    sha256 = "1vxdsiky3492zlyrym02sdwf09y19rl2z5h5iin7qm0wizw5wvm1";
  };

  buildInputs = [ intltool gobjectIntrospection pkgconfig ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
    maintainers = [ maintainers.lethalman ];
  };

}