aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libetpan
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-08-11 19:28:31 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-08-11 19:29:58 -0700
commit58fb551cc63845e5dae28c0b0c53eee8065a5ec0 (patch)
tree6f79384ce52b52783cca343f40fb4842e977fc6b /pkgs/development/libraries/libetpan
parentd73cca7808b007b2a8d37b8befd0210ac086f691 (diff)
libetpan: 1.8 -> 1.9.3
Diffstat (limited to 'pkgs/development/libraries/libetpan')
-rw-r--r--pkgs/development/libraries/libetpan/default.nix27
1 files changed, 17 insertions, 10 deletions
diff --git a/pkgs/development/libraries/libetpan/default.nix b/pkgs/development/libraries/libetpan/default.nix
index b09c2dd0f47e..6756a8dbc569 100644
--- a/pkgs/development/libraries/libetpan/default.nix
+++ b/pkgs/development/libraries/libetpan/default.nix
@@ -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 {
- name = "libetpan-${version}";
-
- src = fetchgit {
- url = "git://github.com/dinhviethoa/libetpan";
- rev = "refs/tags/" + version;
- sha256 = "09xqy1n18qn63x7idfrpwm59lfkvb1p5vxkyksywvy4f6mn4pyxk";
+ src = fetchFromGitHub {
+ owner = "dinhviethoa";
+ repo = "libetpan";
+ rev = version;
+ sha256 = "19g4qskg71jv7sxfxsdkjmrxk9mk5kf9b6fhw06g6wvm3205n95f";
};
- buildInputs = [ autoconf automake libtool openssl ];
+ nativeBuildInputs = [ libtool autoconf automake ];
+
+ buildInputs = [ openssl ];
configureScript = "./autogen.sh";