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-07-05";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "darktable-org";
|
|
repo = "lua-scripts";
|
|
rev = "aed3275943f218e559c58b98579ceafb02e220da";
|
|
hash = "sha256-vRE0kxqbjdjwU+S0Eu44ctYulYPgD0XsrTsz1ESq6t0=";
|
|
};
|
|
|
|
installPhase = ''
|
|
cp -r $src $out
|
|
'';
|
|
}
|