From 4337c7bae2301151ab949be7d44757d4a02d765b Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Fri, 15 Mar 2019 10:57:52 -0400 Subject: [PATCH] minia: Wrong path to licenses attribute --- pkgs/minia.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/minia.nix b/pkgs/minia.nix index aa564ae..9d20f50 100644 --- a/pkgs/minia.nix +++ b/pkgs/minia.nix @@ -17,9 +17,9 @@ stdenv.mkDerivation rec { zlib ]; - meta = with stdenv.licenses; { + meta = with stdenv.lib; { description = "A short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day."; homepage = https://github.com/GATB/minia; - license = gpl3; + license = licenses.gpl3; }; }