opkg: equalize content

This commit is contained in:
Fabian Affolter 2023-02-23 09:27:33 +01:00 committed by GitHub
parent e99fae5e66
commit 3b2329c422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,42 @@
{ lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, xz, attr, acl, libxml2
, autoreconfHook }:
{ lib
, stdenv
, fetchurl
, pkg-config
, curl
, gpgme
, libarchive
, bzip2
, xz
, attr
, acl
, libxml2
, autoreconfHook
}:
stdenv.mkDerivation rec {
version = "0.6.1";
pname = "opkg";
version = "0.6.1";
src = fetchurl {
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
sha256 = "sha256-6H/MtXXGTTrAVZREAWonlfEhJZhqDaiWurl8ShovGyo=";
hash = "sha256-6H/MtXXGTTrAVZREAWonlfEhJZhqDaiWurl8ShovGyo=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ curl gpgme libarchive bzip2 xz attr acl libxml2 ];
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
curl
gpgme
libarchive
bzip2
xz
attr
acl
libxml2
];
meta = with lib; {
description = "A lightweight package management system based upon ipkg";