nixpkgs/pkgs/os-specific/linux/ell/default.nix
2019-05-13 16:27:14 -05:00

23 lines
604 B
Nix

{ stdenv, fetchgit, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
pname = "ell";
version = "0.20";
src = fetchgit {
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
rev = version;
sha256 = "1g143dbc7cfks63k9yi2m8hpgfp9jj5b56s3hyxjzxm9dac3yn6c";
};
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 ];
};
}