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

stdenv.mkDerivation rec {
  name = "gcab-0.6";

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

  buildInputs = [ intltool gobjectIntrospection pkgconfig ];

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

}