summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-08-20 19:57:37 +0200
committerPeter Simons <simons@cryp.to>2014-08-20 20:26:57 +0200
commit128039217e1d674dcce60817e5c5adc7badbb39a (patch)
tree9be87fb9f8b6f4131073bf66a88b28fbf851050f /pkgs/development/tools
parent30d05ba08261b52d3c87adcf209702a31d47320c (diff)
downloadnixlib-128039217e1d674dcce60817e5c5adc7badbb39a.tar
nixlib-128039217e1d674dcce60817e5c5adc7badbb39a.tar.gz
nixlib-128039217e1d674dcce60817e5c5adc7badbb39a.tar.bz2
nixlib-128039217e1d674dcce60817e5c5adc7badbb39a.tar.lz
nixlib-128039217e1d674dcce60817e5c5adc7badbb39a.tar.xz
nixlib-128039217e1d674dcce60817e5c5adc7badbb39a.tar.zst
nixlib-128039217e1d674dcce60817e5c5adc7badbb39a.zip
haskell-hdevtools: fix patch checksum one more time
It appears that upstream has re-based the pull request, thereby changing the hash.
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/haskell/hdevtools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/haskell/hdevtools/default.nix b/pkgs/development/tools/haskell/hdevtools/default.nix
index 92d024b43a5d..350ad216bcab 100644
--- a/pkgs/development/tools/haskell/hdevtools/default.nix
+++ b/pkgs/development/tools/haskell/hdevtools/default.nix
@@ -1,4 +1,4 @@
-{ cabal, cmdargs, ghcPaths, network, syb, time, fetchpatch }:
+{ cabal, cmdargs, ghcPaths, network, syb, time, fetchurl }:
 
 cabal.mkDerivation (self: {
   pname = "hdevtools";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
   sha256 = "1a218m817q35f52fv6mn28sfv136i6fm2mzgdidpm24pc0585gl7";
   isLibrary = false;
   isExecutable = true;
-  patches = [ (fetchpatch { url = "https://github.com/ts468/hdevtools/pull/2.diff"; sha256 = "0pwgxm4mh29qm79kg0gc6a90lzjbmh8rf4pc3hx2zqgb5f3l2abs"; }) ];
+  patches = [ (fetchurl { url = "https://github.com/ts468/hdevtools/pull/2.patch"; md5 = "256609d2d3f5b719caa0002ee579d169"; }) ];
   buildDepends = [ cmdargs ghcPaths network syb time ];
   meta = {
     homepage = "https://github.com/bitc/hdevtools/";