about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libraw/unstable.nix
blob: 3f19bb53c4e641449083fffe2ed687b469951d88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ libraw, fetchFromGitHub }:

libraw.overrideAttrs (_: rec {
  version = "unstable-2021-12-03";

  src = fetchFromGitHub {
    owner = "LibRaw";
    repo = "LibRaw";
    rev = "52b2fc52e93a566e7e05eaa44cada58e3360b6ad";
    sha256 = "kW0R4iPuqnFuWYDrl46ok3kaPcGgY2MqZT7mqVX+BDQ=";
  };
})