Merge pull request #11719 from rycee/fix/units

units: add readline dependency
This commit is contained in:
Arseniy Seroka 2015-12-15 01:01:23 +03:00
commit a01e7fed27

View File

@ -1,4 +1,5 @@
{stdenv, fetchurl}:
{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
name = "units-${version}";
version = "2.12";
@ -8,8 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "1jxvjknz2jhq773jrwx9gc1df3gfy73yqmkjkygqxzpi318yls3q";
};
meta = {
buildInputs = [ readline ];
doCheck = true;
meta = with stdenv.lib; {
description = "Unit conversion tool";
platforms = stdenv.lib.platforms.linux;
homepage = https://www.gnu.org/software/units/;
license = [ licenses.gpl3Plus ];
platforms = stdenv.lib.platforms.all;
};
}