libetpan: 1.8 -> 1.9.3
This commit is contained in:
parent
d73cca7808
commit
58fb551cc6
@ -1,17 +1,24 @@
|
|||||||
{ autoconf, automake, fetchgit, libtool, stdenv, openssl }:
|
{ stdenv, fetchFromGitHub
|
||||||
|
, autoconf
|
||||||
|
, automake
|
||||||
|
, libtool
|
||||||
|
, openssl
|
||||||
|
}:
|
||||||
|
|
||||||
let version = "1.8"; in
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libetpan";
|
||||||
|
version = "1.9.3";
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
src = fetchFromGitHub {
|
||||||
name = "libetpan-${version}";
|
owner = "dinhviethoa";
|
||||||
|
repo = "libetpan";
|
||||||
src = fetchgit {
|
rev = version;
|
||||||
url = "git://github.com/dinhviethoa/libetpan";
|
sha256 = "19g4qskg71jv7sxfxsdkjmrxk9mk5kf9b6fhw06g6wvm3205n95f";
|
||||||
rev = "refs/tags/" + version;
|
|
||||||
sha256 = "09xqy1n18qn63x7idfrpwm59lfkvb1p5vxkyksywvy4f6mn4pyxk";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake libtool openssl ];
|
nativeBuildInputs = [ libtool autoconf automake ];
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
configureScript = "./autogen.sh";
|
configureScript = "./autogen.sh";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user