summary refs log tree commit diff
path: root/pkgs/tools/package-management/opkg/default.nix
blob: d89d4c58af357ede8e3c25c8a48622a70953d986 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, curl, gpgme, libarchive, bzip2, lzma, attr, acl
, autoreconfHook }:

stdenv.mkDerivation rec {
  version = "0.3.1";
  name = "opkg-${version}";
  src = fetchurl {
    url = "http://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
    sha256 = "1pw7igmb4miyxl11sj9g8p8pgxg9nmn1h2hzi8b23v44hcmc1inj";
  };

  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 ];
  };
}