diff options
author | Emile <git@emile.space> | 2025-02-10 19:40:10 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2025-02-10 19:40:10 +0100 |
commit | f62271e0d0739cbc7a4fae21ebfcd76e0e7e9d58 (patch) | |
tree | 82456e0b433435520e39091fdf629ef11c8fc28e | |
parent | 97a292ddbd2916f25581528dacb184c3c65303df (diff) |
pkgs/libc-database: fix type in license
-rw-r--r-- | nix/pkgs/libc-database/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/pkgs/libc-database/default.nix b/nix/pkgs/libc-database/default.nix index 4ddcf07..b13a167 100644 --- a/nix/pkgs/libc-database/default.nix +++ b/nix/pkgs/libc-database/default.nix @@ -18,7 +18,7 @@ pkgs.stdenv.mkDerivation rec { # not building, we just want to download the repo buildPhase = ''''; - + installPhase = '' mkdir -p $out/bin ls -l @@ -28,7 +28,7 @@ pkgs.stdenv.mkDerivation rec { meta = { description = "Build a database of libc offsets to simplify exploitation"; homepage = "https://github.com/niklasb/libc-database"; - license = lib.license.mit; + licenses = lib.license.mit; maintainers = with lib.maintainers; [ hanemile ]; }; } |