lol
1{ stdenv, fetchurl, intltool, gobjectIntrospection, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "gcab-0.6";
5
6 src = fetchurl {
7 url = "mirror://gnome/sources/gcab/0.6/${name}.tar.xz";
8 sha256 = "a0443b904bfa7227b5155bfcdf9ea9256b6e26930b8febe1c41f972f6f1334bb";
9 };
10
11 buildInputs = [ intltool gobjectIntrospection pkgconfig ];
12
13 meta = with stdenv.lib; {
14 platforms = platforms.linux;
15 maintainers = [ maintainers.lethalman ];
16 };
17
18}