18 lines
453 B
Nix
18 lines
453 B
Nix
{ pkgs, ... }:
|
|
# AUTO-UPDATE: nix-update --flake --version=branch=master darktable-lua-scripts
|
|
pkgs.stdenv.mkDerivation rec {
|
|
pname = "lua-scripts";
|
|
version = "release-2.0.0-unstable-2025-06-01";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "darktable-org";
|
|
repo = pname;
|
|
rev = "453d744b6938f1bab652bae9745731bfe413d90b";
|
|
hash = "sha256-gTbp7cExUnh4CVviaiYZ1eqVhlXwzX/DHKIFgWJe+UE=";
|
|
};
|
|
|
|
installPhase = ''
|
|
cp -r $src $out
|
|
'';
|
|
}
|