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: 4f2244c00347
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0563e6c907ba
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 7, 2019

  1. esniper: update to latest git revision "Version_2_35_0-15-g91d2665"

    The latest release no longer works.
    
    (cherry picked from commit 3a64e98)
    peti committed Jun 7, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    jabranham Alex Branham
    Copy the full SHA
    0563e6c View commit details
Showing with 7 additions and 6 deletions.
  1. +7 −6 pkgs/applications/networking/esniper/default.nix
13 changes: 7 additions & 6 deletions pkgs/applications/networking/esniper/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{ stdenv, fetchurl, openssl, curl, coreutils, gawk, bash, which }:
{ stdenv, fetchgit, openssl, curl, coreutils, gawk, bash, which }:

stdenv.mkDerivation rec {
name = "esniper-2.35.0";
name = "esniper-2.35.0-15-g91d2665";

src = fetchurl {
url = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
};
src = fetchgit {
url = "https://git.code.sf.net/p/esniper/git";
rev = "91d2665539beaeac21fb4c0cc2fd39c44e771ed7";
sha256 = "0dixcsvbcj9jbfjfv50nwvw7w90c4s6gnkrpilaan984i6y45rw0";
};

buildInputs = [ openssl curl ];