2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-10-11 23:52:04 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, glib
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pantheon
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-10-11 23:52:04 +01:00
|
|
|
, vala
|
|
|
|
, gettext
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vala-lint-unstable";
|
2020-10-18 21:45:22 +01:00
|
|
|
version = "2020-08-18";
|
2019-10-11 23:52:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vala-lang";
|
|
|
|
repo = "vala-lint";
|
2020-10-18 21:45:22 +01:00
|
|
|
rev = "fc5dd9e95bc61540b404d5bc070c0629903baad9";
|
|
|
|
sha256 = "n6pp6vYGaRF8B3phWp/e9KnpKGf0Op+xGVdT6HHe0rM=";
|
2019-10-11 23:52:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-10-11 23:52:04 +01:00
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
];
|
|
|
|
|
|
|
|
# See https://github.com/vala-lang/vala-lint/issues/133
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/vala-lang/vala-lint";
|
2019-10-11 23:52:04 +01:00
|
|
|
description = "Check Vala code files for code-style errors";
|
|
|
|
longDescription = ''
|
|
|
|
Small command line tool and library for checking Vala code files for code-style errors.
|
|
|
|
Based on the elementary Code-Style guidelines.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = pantheon.maintainers;
|
|
|
|
};
|
|
|
|
}
|