mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Added opkg package
svn path=/nixpkgs/trunk/; revision=27554
This commit is contained in:
parent
a0d97d5eb2
commit
24e3b3a58b
10
pkgs/tools/package-management/opkg/default.nix
Normal file
10
pkgs/tools/package-management/opkg/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
}
|
@ -7983,6 +7983,8 @@ let
|
||||
inherit (pythonPackages) pexpect paramiko;
|
||||
};
|
||||
|
||||
opkg = callPackage ../tools/package-management/opkg { };
|
||||
|
||||
pgadmin = callPackage ../applications/misc/pgadmin { };
|
||||
|
||||
pgf = pgf2;
|
||||
|
Loading…
Reference in New Issue
Block a user