about summary refs log tree commit diff
path: root/pkgs/applications/science/biology
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-05-02 01:43:22 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2017-05-02 01:43:22 -0400
commitbd9246b00904af79c00d9d64e780fb7dd589c624 (patch)
tree93736fa1d3f612011324e3bf419b11b171f74b7c /pkgs/applications/science/biology
parentf87e4c9f53925603a73a8ec1070dbcd743bedfd2 (diff)
downloadnixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.tar
nixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.tar.gz
nixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.tar.bz2
nixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.tar.lz
nixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.tar.xz
nixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.tar.zst
nixlib-bd9246b00904af79c00d9d64e780fb7dd589c624.zip
treewide: Always use integers for meta.priority
Meta attributes types are now enforce as of commit
90b9719f4fc95e54400a66bffcc8044c568cfa4b,
so ensure meta.priority is always set to an integer.

This fixes evaluation of `linuxPackages_latest.virtualbox`
(the impetus for this commit)
and other packages that use lowPrio or hiPrio.
Diffstat (limited to 'pkgs/applications/science/biology')
-rw-r--r--pkgs/applications/science/biology/ncbi-tools/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/biology/ncbi-tools/default.nix b/pkgs/applications/science/biology/ncbi-tools/default.nix
index e9d99aeb254c..821a80230e50 100644
--- a/pkgs/applications/science/biology/ncbi-tools/default.nix
+++ b/pkgs/applications/science/biology/ncbi-tools/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
     longDescription = ''The NCBI Bioinformatics toolsbox, including command-line utilties, libraries and include files. No X11 support'';
     homepage = http://www.ncbi.nlm.nih.gov/IEB/ToolBox/; 
     license = "GPL";
-    priority = "5";   # zlib.so gives a conflict with zlib
+    priority = 5;   # zlib.so gives a conflict with zlib
     broken = true;
   };
 }