about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/graphics/sane/backends/git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/sane/backends/git.nix')
-rw-r--r--nixpkgs/pkgs/applications/graphics/sane/backends/git.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/sane/backends/git.nix b/nixpkgs/pkgs/applications/graphics/sane/backends/git.nix
new file mode 100644
index 000000000000..2edd739068d9
--- /dev/null
+++ b/nixpkgs/pkgs/applications/graphics/sane/backends/git.nix
@@ -0,0 +1,10 @@
+{ callPackage, fetchgit, ... } @ args:
+
+callPackage ./generic.nix (args // {
+  version = "2017-12-01";
+  src = fetchgit {
+    sha256 = "0qf7d7268kdxnb723c03m6icxhbgx0vw8gqvck2q1w5b948dy9g8";
+    rev = "e895ee55bec8a3320a0e972b32c05d35b47fe226";
+    url = "https://gitlab.com/sane-project/backends.git";
+  };
+})