2019-03-21 15:53:06 +00:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ell";
|
2019-05-13 21:27:14 +00:00
|
|
|
version = "0.20";
|
2019-03-21 15:53:06 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
|
|
|
rev = version;
|
2019-05-13 21:27:14 +00:00
|
|
|
sha256 = "1g143dbc7cfks63k9yi2m8hpgfp9jj5b56s3hyxjzxm9dac3yn6c";
|
2019-03-21 15:53:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
|
|
|
description = "Embedded Linux Library";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ mic92 dtzWill ];
|
|
|
|
};
|
|
|
|
}
|