mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
23 lines
604 B
Nix
23 lines
604 B
Nix
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "ell";
|
||
|
version = "0.19";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
||
|
rev = version;
|
||
|
sha256 = "0qvgn5yxffgmlggixf6kh57gxricf57iyc8mqwn46j615bijvjs8";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|