18 lines
457 B
Nix
18 lines
457 B
Nix
{ pkgs, ... }:
|
|
# AUTO-UPDATE: nix-update --flake --version=branch=master darktable-lua-scripts
|
|
pkgs.stdenv.mkDerivation {
|
|
pname = "lua-scripts";
|
|
version = "release-2.0.0-unstable-2025-08-18";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "darktable-org";
|
|
repo = "lua-scripts";
|
|
rev = "c95547caa72f7b136b5192dd19a535da3fbe4e9b";
|
|
hash = "sha256-Qt3DkmNH/ZWY3uI8UvhSM4dDt7KDQlJqOnPmsySGGwU=";
|
|
};
|
|
|
|
installPhase = ''
|
|
cp -r $src $out
|
|
'';
|
|
}
|