Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 11bbc69354f6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 60523a6222f0
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 12, 2019

  1. libetpan: 1.8 -> 1.9.3

    Jonathan Ringer committed Aug 12, 2019
    Copy the full SHA
    58fb551 View commit details
  2. Merge pull request #66505 from jonringer/bump-libetpan

    libetpan: 1.8 -> 1.9.3
    mmahut authored Aug 12, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    60523a6 View commit details
Showing with 17 additions and 10 deletions.
  1. +17 −10 pkgs/development/libraries/libetpan/default.nix
27 changes: 17 additions & 10 deletions pkgs/development/libraries/libetpan/default.nix
Original file line number Diff line number Diff line change
@@ -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";