1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 18:12:46 +00:00
nixpkgs/pkgs/development/libraries/gcab/default.nix

29 lines
687 B
Nix
Raw Normal View History

2018-02-09 20:58:56 +00:00
{ stdenv, fetchurl, gettext, gobjectIntrospection, pkgconfig, meson, ninja, glibcLocales, git, vala, glib, zlib }:
2015-04-10 16:02:57 +01:00
stdenv.mkDerivation rec {
2016-09-19 00:38:48 +01:00
name = "gcab-${version}";
2018-02-09 20:58:56 +00:00
version = "1.1";
LC_ALL = "en_US.UTF-8";
2015-04-10 16:02:57 +01:00
src = fetchurl {
2016-09-19 00:38:48 +01:00
url = "mirror://gnome/sources/gcab/${version}/${name}.tar.xz";
2018-02-09 20:58:56 +00:00
sha256 = "0l19sr6pg0cfcddmi5n79d08mjjbhn427ip5jlsy9zddq9r24aqr";
2015-04-10 16:02:57 +01:00
};
2018-02-09 20:58:56 +00:00
nativeBuildInputs = [ meson ninja glibcLocales git pkgconfig vala gettext gobjectIntrospection ];
buildInputs = [ glib zlib ];
mesonFlags = [
"-Ddocs=false"
"-Dtests=false"
];
2015-04-10 16:02:57 +01:00
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
};
}