mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ocproxy: 1.50 -> 1.60
This commit is contained in:
parent
2e93988e64
commit
3686e1bbc8
1 changed files with 4 additions and 3 deletions
|
@ -1,17 +1,18 @@
|
||||||
{ stdenv, fetchFromGitHub, autoconf, automake, libevent }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libevent }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.50";
|
version = "1.60";
|
||||||
name = "ocproxy-${version}";
|
name = "ocproxy-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cernekee";
|
owner = "cernekee";
|
||||||
repo = "ocproxy";
|
repo = "ocproxy";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "136vlk2svgls5paf17xi1zahcahgcnmi2p55khh7zpqaar4lzw6s";
|
sha256 = "03323nnhb4y9nzwva04mq7xg03dvdrgp689g89f69jqc261skcqx";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake libevent ];
|
nativeBuildInputs = [ autoconf automake ];
|
||||||
|
buildInputs = [ libevent ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
patchShebangs autogen.sh
|
patchShebangs autogen.sh
|
||||||
|
|
Loading…
Reference in a new issue