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: 83f231a0f2b4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d0592798d55b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 11, 2019

  1. babeld: name -> pname

    mweinelt committed Oct 11, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    tadeokondrak Tadeo Kondrak
    Copy the full SHA
    bb781ce View commit details
  2. Merge pull request #70988 from mweinelt/pr/master/babeld/pname

    babeld: name -> pname
    flokli authored Oct 11, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    tadeokondrak Tadeo Kondrak
    Copy the full SHA
    d059279 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/tools/networking/babeld/default.nix
5 changes: 3 additions & 2 deletions pkgs/tools/networking/babeld/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "babeld-1.9.1";
pname = "babeld";
version = "1.9.1";

src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${pname}-${version}.tar.gz";
sha256 = "1d503igqv9s5pgrhvxp1czjy2xfsjhagyyh2iny7g4cjvl0kq6qy";
};