about summary refs log tree commit diff
path: root/pkgs/development/libraries/gcab/default.nix
blob: 38a36fc4e546c58f2efb9448b309b287f80505bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ intltool gobjectIntrospection ];

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

}