nixpkgs/pkgs/tools/package-management/opkg/default.nix

23 lines
762 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, curl, gpgme, libarchive, bzip2, lzma, attr, acl, libxml2
2015-12-08 21:52:52 +00:00
, autoreconfHook }:
stdenv.mkDerivation rec {
2019-06-15 09:15:38 +00:00
version = "0.4.1";
pname = "opkg";
src = fetchurl {
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
2019-06-15 09:15:38 +00:00
sha256 = "0hqa4lqxs3w9fmn9idzfscjkm23jw5asby43v0szcxrqgl1ixb25";
};
2016-11-27 14:57:56 +00:00
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ curl gpgme libarchive bzip2 lzma attr acl libxml2 ];
meta = with stdenv.lib; {
description = "A lightweight package management system based upon ipkg";
homepage = https://git.yoctoproject.org/cgit/cgit.cgi/opkg/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}