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

23 lines
713 B
Nix
Raw Normal View History

2015-12-08 21:52:52 +00:00
{ stdenv, fetchurl, pkgconfig, curl, gpgme, libarchive, bzip2, lzma, attr, acl
, autoreconfHook }:
stdenv.mkDerivation rec {
2015-12-08 21:52:52 +00:00
version = "0.3.1";
name = "opkg-${version}";
src = fetchurl {
url = "http://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
2015-12-08 21:52:52 +00:00
sha256 = "1pw7igmb4miyxl11sj9g8p8pgxg9nmn1h2hzi8b23v44hcmc1inj";
};
2015-12-08 21:52:52 +00:00
buildInputs = [ pkgconfig curl gpgme libarchive bzip2 lzma attr acl
autoreconfHook ];
meta = with stdenv.lib; {
description = "A lightweight package management system based upon ipkg";
homepage = http://code.google.com/p/opkg/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}