mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
11 lines
329 B
Nix
11 lines
329 B
Nix
{ callPackage, fetchgit, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "2015-12-27";
|
|
src = fetchgit {
|
|
sha256 = "4bf6e8815d2edbbc75255928d0fb030639a9fea9a5aa953dcf1f00e167eff527";
|
|
rev = "cadb4b0fff00540159625320416e5601c4704627";
|
|
url = "git://alioth.debian.org/git/sane/sane-backends.git";
|
|
};
|
|
})
|