forked from mirrors/nixpkgs
58bf694071
The git version was duplicated from the stable one and the two had
begun to diverge significantly. For example, commit
88d731925d
fixed a supposedly real
bug — but only in the stable package.
Factor out the shared code to avoid trouble — or worse, subtle
differences or bugs — in future.
11 lines
329 B
Nix
11 lines
329 B
Nix
{ callPackage, fetchgit, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "2015-12-20";
|
|
src = fetchgit {
|
|
sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed";
|
|
rev = "5136e664b8608604f54a2cc1d466019922b311e6";
|
|
url = "git://alioth.debian.org/git/sane/sane-backends.git";
|
|
};
|
|
})
|