summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-26 17:32:18 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-26 17:32:18 +0200
commit18e4125b8873419308944e7adb805d6ad8b5da95 (patch)
tree894139f4a68fffba67776e2ef602697b861a7e60 /pkgs
parent1d0625499854b583c57267a744111ba8a1d0cfaf (diff)
downloadnixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.tar
nixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.tar.gz
nixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.tar.bz2
nixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.tar.lz
nixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.tar.xz
nixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.tar.zst
nixpkgs-18e4125b8873419308944e7adb805d6ad8b5da95.zip
Revert "checkbashism: 2.0.0.2 -> 2.18.1"
This reverts commit c4ac43a20ccf6a53587e3a5b5d6f2c87e4a9de5c.

See https://github.com/NixOS/nixpkgs/pull/38102.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/checkbashisms/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/checkbashisms/default.nix b/pkgs/development/tools/misc/checkbashisms/default.nix
index 6f4330ef0a9..2564b42731b 100644
--- a/pkgs/development/tools/misc/checkbashisms/default.nix
+++ b/pkgs/development/tools/misc/checkbashisms/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, perl }:
 stdenv.mkDerivation rec {
-  version = "2.18.1";
+  version = "2.0.0.2";
   name = "checkbashisms-${version}";
 
   src = fetchurl {
-    url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz";
-    sha256 = "1yaygfzv5jzvcbahz6sdfnzhch9mxgsrlsym2ad62nk0svsnp24n";
+    url = "mirror://sourceforge/project/checkbaskisms/${version}/checkbashisms";
+    sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd";
   };
 
   buildInputs = [ perl ];