3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/sane/backends/git.nix
Tobias Geerinckx-Rice 58bf694071 saneBackends: factor out common code into generic.nix
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.
2015-12-24 04:05:57 +01:00

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";
};
})