summary refs log tree commit diff
path: root/pkgs/tools/package-management/opkg/default.nix
blob: b0bb090b64d09bfb4db451c62457e47ac5105a7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, pkgconfig, curl, gpgme}:

stdenv.mkDerivation {
  name = "opkg-0.1.8";
  src = fetchurl {
    url = http://opkg.googlecode.com/files/opkg-0.1.8.tar.gz;
    sha256 = "0q0w7hmc6zk7pnddamd5v8d76qnh3043lzh5np24jbb6plqbz57z";
  };
  buildInputs = [ pkgconfig curl gpgme ];
}