Add meta to packages

This commit is contained in:
2025-09-30 15:10:38 +02:00
parent c4c3e54133
commit 54fd9091c8
25 changed files with 200 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
{
stdenv
, lib
, glibc
}:
@@ -15,4 +16,11 @@ stdenv.mkDerivation rec {
makeFlags = [ "DESTDIR=$(out)" ];
preBuild = "env";
dontPatchShebangs = true;
meta = {
homepage = "https://gitlab.pm.bsc.es/rarias/nixtools";
description = "nix bubblewrap wrapper";
maintainers = with lib.maintainers.bsc; [ rarias ];
platforms = lib.platforms.linux;
};
}