Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8252400a0da4
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a960b87ac212
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 1, 2018

  1. esniper: fix mismatched 'src' attribute

    (cherry picked from commit 4a64a7a)
    peti committed Sep 1, 2018

    Verified

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

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

src = fetchFromGitHub {
owner = "yhfudev";
repo = "esniper";
rev = "c95140d376db3c991300a7462e6c172b0ccf3eb5";
sha256 = "1dfb5hmcrvm3yg9ask362c6s5ylxs21szw23dm737a94br37j890";
};
src = fetchurl {
url = "mirror://sourceforge/esniper/${stdenv.lib.replaceStrings ["."] ["-"] name}.tgz";
sha256 = "04iwjb42lw90c03125bjdpnm0fp78dmwf2j35r7mah0nwcrlagd9";
};

buildInputs = [ openssl curl ];