Add meta to packages
All checks were successful
CI / build:cross (pull_request) Successful in 6s
CI / build:all (pull_request) Successful in 16s

This commit is contained in:
2025-09-30 15:10:38 +02:00
parent aa72d04a83
commit e9754aa8d7
29 changed files with 239 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;
};
}