summary refs log tree commit diff
path: root/pkgs/applications/graphics/sane
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-09-10 15:45:09 +0800
committerPeter Hoeg <peter@hoeg.com>2017-09-10 15:46:38 +0800
commit67c949a8b6367236867782fe6aa6ec2900ef9894 (patch)
tree0d074a1a43cbf8e6f8b15d3a876864b9b21ae212 /pkgs/applications/graphics/sane
parent2dff799a10b8ba5d8424947c01fd10fad3d45f36 (diff)
downloadnixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.tar
nixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.tar.gz
nixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.tar.bz2
nixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.tar.lz
nixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.tar.xz
nixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.tar.zst
nixpkgs-67c949a8b6367236867782fe6aa6ec2900ef9894.zip
sane-backends: 1.0.25 -> 1.0.27
Use a proper upstream as well.
Diffstat (limited to 'pkgs/applications/graphics/sane')
-rw-r--r--pkgs/applications/graphics/sane/backends/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/sane/backends/default.nix b/pkgs/applications/graphics/sane/backends/default.nix
index a3ca7fdd55d..20d5629b83a 100644
--- a/pkgs/applications/graphics/sane/backends/default.nix
+++ b/pkgs/applications/graphics/sane/backends/default.nix
@@ -1,13 +1,11 @@
 { callPackage, fetchurl, ... } @ args:
 
 callPackage ./generic.nix (args // rec {
-  version = "1.0.25";
+  version = "1.0.27";
   src = fetchurl {
-    sha256 = "0b3fvhrxl4l82bf3v0j47ypjv6a0k5lqbgknrq1agpmjca6vmmx4";
+    sha256 = "1j9nbqspaj0rlgalafb5z6r606k0i22kz0rcpd744p176yzlfdr9";
     urls = [
-      "http://pkgs.fedoraproject.org/repo/pkgs/sane-backends/sane-backends-${version}.tar.gz/f9ed5405b3c12f07c6ca51ee60225fe7/sane-backends-${version}.tar.gz"
-      "https://alioth.debian.org/frs/download.php/file/4146/sane-backends-${version}.tar.gz"
+      "https://alioth.debian.org/frs/download.php/latestfile/176/sane-backends-${version}.tar.gz"
     ];
-    curlOpts = "--insecure";
   };
 })