mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
22 lines
645 B
Nix
22 lines
645 B
Nix
{ stdenv, fetchurl, glib, pkgconfig, perl, intltool, gobjectIntrospection, libintlOrEmpty }:
|
|
stdenv.mkDerivation rec {
|
|
name = "libgtop-${version}";
|
|
major = "2.38";
|
|
version = "${major}.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libgtop/${major}/${name}.tar.xz";
|
|
sha256 = "04mnxgzyb26wqk6qij4iw8cxwl82r8pcsna5dg8vz2j3pdi0wv2g";
|
|
};
|
|
|
|
propagatedBuildInputs = [ glib ];
|
|
buildInputs = libintlOrEmpty;
|
|
nativeBuildInputs = [ pkgconfig perl intltool gobjectIntrospection ];
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
meta = {
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|