mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
vala-lint: init at 2019-10-11
This commit is contained in:
parent
03b61c02db
commit
7a4ea26f2e
51
pkgs/development/tools/vala-lint/default.nix
Normal file
51
pkgs/development/tools/vala-lint/default.nix
Normal file
@ -0,0 +1,51 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, glib
|
||||
, meson
|
||||
, ninja
|
||||
, pantheon
|
||||
, pkgconfig
|
||||
, vala
|
||||
, gettext
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vala-lint-unstable";
|
||||
version = "2019-10-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vala-lang";
|
||||
repo = "vala-lint";
|
||||
rev = "a077bbec30dea128616a23583ce3f8364ff2ef11";
|
||||
sha256 = "0w0rmaj4v42wc4vq2lfjnj6airag5ahv6522xkw3j1nmccxq3s72";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
gettext
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
vala
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
];
|
||||
|
||||
# See https://github.com/vala-lang/vala-lint/issues/133
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/vala-lang/vala-lint;
|
||||
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;
|
||||
};
|
||||
}
|
@ -8644,6 +8644,8 @@ in
|
||||
|
||||
vlang = callPackage ../development/compilers/vlang { };
|
||||
|
||||
vala-lint = callPackage ../development/tools/vala-lint { };
|
||||
|
||||
inherit (callPackage ../development/compilers/vala { })
|
||||
vala_0_36
|
||||
vala_0_40
|
||||
|
Loading…
Reference in New Issue
Block a user