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

Commits on Aug 17, 2018

  1. cowsay: 3.0.3+dfsg1-16 -> 3.0.3+dfsg2

    The old source no longer exists.
    aneeshusa committed Aug 17, 2018
    Copy the full SHA
    9a4e067 View commit details
  2. Merge pull request #45211 from aneeshusa/use-non-dead-source-for-cowsay

    cowsay: 3.0.3+dfsg1-16 -> 3.0.3+dfsg2
    srhb authored Aug 17, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    93147d7 View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/tools/misc/cowsay/default.nix
14 changes: 7 additions & 7 deletions pkgs/tools/misc/cowsay/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchgit, perl }:
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation {
name = "cowsay-3.03+dfsg1-16";
stdenv.mkDerivation rec{
version = "3.03+dfsg2";
name = "cowsay-${version}";

src = fetchgit {
url = https://anonscm.debian.org/git/collab-maint/cowsay.git;
rev = "acb946c166fa3b9526b9c471ef1330f9f89f9c8b";
sha256 = "1ji66nrdcc8sh79hwils3nbaj897s352r5wp7kzjwiym8bm2azk6";
src = fetchurl {
url = "http://http.debian.net/debian/pool/main/c/cowsay/cowsay_${version}.orig.tar.gz";
sha256 = "0ghqnkp8njc3wyqx4mlg0qv0v0pc996x2nbyhqhz66bbgmf9d29v";
};

buildInputs = [ perl ];