nixpkgs/pkgs/development/libraries/libraw/unstable.nix
Vladimír Čunát c7d26e160f
libraw: switch the default back to 0.20
Many packages still won't work with the newer unreleased version.
2022-04-24 18:20:17 +02:00

13 lines
289 B
Nix

{ libraw, fetchFromGitHub }:
libraw.overrideAttrs (_: rec {
version = "unstable-2021-12-03";
src = fetchFromGitHub {
owner = "LibRaw";
repo = "LibRaw";
rev = "52b2fc52e93a566e7e05eaa44cada58e3360b6ad";
sha256 = "kW0R4iPuqnFuWYDrl46ok3kaPcGgY2MqZT7mqVX+BDQ=";
};
})