various: inherit missing meta attributes (#513814)

This commit is contained in:
Gaétan Lepage
2026-04-27 07:31:11 +00:00
committed by GitHub
6 changed files with 65 additions and 13 deletions
@@ -11,4 +11,15 @@ vimUtils.buildVimPlugin {
postInstall = ''
ln -s ${fzf}/bin/fzf $target/bin/fzf
'';
meta = {
inherit (fzf.meta)
changelog
description
homepage
license
platforms
;
maintainers = [ ];
};
}
@@ -6,5 +6,16 @@
vimUtils.buildVimPlugin {
inherit (meson) pname version src;
preInstall = "cd data/syntax-highlighting/vim";
meta.maintainers = with lib.maintainers; [ vcunat ];
meta = {
inherit (meson.meta)
homepage
description
mainProgram
longDescription
license
platforms
;
maintainers = with lib.maintainers; [ vcunat ];
};
}
@@ -17,5 +17,16 @@ vimUtils.buildVimPlugin {
cp "${ftdetect}" vim-plugin/ftdetect/tup.vim
cd vim-plugin
'';
meta.maintainers = with lib.maintainers; [ enderger ];
meta = {
inherit (tup.meta)
description
mainProgram
longDescription
homepage
license
platforms
broken
;
maintainers = with lib.maintainers; [ enderger ];
};
}
+11 -9
View File
@@ -40,12 +40,22 @@ let
--replace-fail 'defined(__linux__)' '0'
'';
meta = {
description = "SMT solver for Monotonic Theories";
mainProgram = "monosat";
platforms = lib.platforms.unix;
license = if includeGplCode then lib.licenses.gpl2 else lib.licenses.mit;
homepage = "https://github.com/sambayless/monosat";
maintainers = [ lib.maintainers.acairncross ];
};
core = stdenv.mkDerivation {
inherit
pname
version
src
patches
meta
;
postPatch = commonPostPatch + ''
substituteInPlace CMakeLists.txt \
@@ -72,15 +82,6 @@ let
'';
passthru = { inherit python; };
meta = {
description = "SMT solver for Monotonic Theories";
mainProgram = "monosat";
platforms = lib.platforms.unix;
license = if includeGplCode then lib.licenses.gpl2 else lib.licenses.mit;
homepage = "https://github.com/sambayless/monosat";
maintainers = [ lib.maintainers.acairncross ];
};
};
python =
@@ -98,6 +99,7 @@ let
version
src
patches
meta
;
build-system = [
@@ -24,4 +24,14 @@ buildPythonPackage rec {
pyyaml
versioningit
];
meta = {
inherit (ua-parser.meta)
description
homepage
license
changelog
;
maintainers = [ ];
};
}
+9 -2
View File
@@ -10516,12 +10516,19 @@ with pkgs;
};
};
}).overrideAttrs
{
(old: {
pname = "vim-darwin";
meta = {
inherit (old.meta)
description
homepage
license
mainProgram
outputsToInstall
;
platforms = lib.platforms.darwin;
};
};
});
vimacs = callPackage ../applications/editors/vim/vimacs.nix { };