about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/patchelf
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-09-29 16:36:33 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2018-09-29 16:36:33 -0400
commitd7003ed57662384a77cb747a65851b29cf927be8 (patch)
treebdddbda82b998a1e19d5507b298b6f6a8940b2f0 /pkgs/development/tools/misc/patchelf
parent0a784c094f2c69b22a3baece6a1d32c86f99b3cc (diff)
downloadnixlib-d7003ed57662384a77cb747a65851b29cf927be8.tar
nixlib-d7003ed57662384a77cb747a65851b29cf927be8.tar.gz
nixlib-d7003ed57662384a77cb747a65851b29cf927be8.tar.bz2
nixlib-d7003ed57662384a77cb747a65851b29cf927be8.tar.lz
nixlib-d7003ed57662384a77cb747a65851b29cf927be8.tar.xz
nixlib-d7003ed57662384a77cb747a65851b29cf927be8.tar.zst
nixlib-d7003ed57662384a77cb747a65851b29cf927be8.zip
patchelf: fix license
Use the attr set instead of a string
Diffstat (limited to 'pkgs/development/tools/misc/patchelf')
-rw-r--r--pkgs/development/tools/misc/patchelf/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix
index df24f6003d7f..77d03f299f4a 100644
--- a/pkgs/development/tools/misc/patchelf/default.nix
+++ b/pkgs/development/tools/misc/patchelf/default.nix
@@ -12,11 +12,11 @@ stdenv.mkDerivation rec {
 
   doCheck = false; # fails 8 out of 24 tests, problems when loading libc.so.6
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://nixos.org/patchelf.html;
-    license = "GPL";
+    license = licenses.gpl3;
     description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
-    maintainers = [ stdenv.lib.maintainers.eelco ];
-    platforms = stdenv.lib.platforms.all;
+    maintainers = [ maintainers.eelco ];
+    platforms = platforms.all;
   };
 }