diff --git a/pkgs/by-name/de/desktoppr/package.nix b/pkgs/by-name/de/desktoppr/package.nix new file mode 100644 index 000000000000..408141c2e664 --- /dev/null +++ b/pkgs/by-name/de/desktoppr/package.nix @@ -0,0 +1,62 @@ +{ + stdenv, + fetchFromGitHub, + fetchpatch, + swift, + swiftpm, + versionCheckHook, + lib, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "desktoppr"; + version = "0.5"; + + src = fetchFromGitHub { + owner = "scriptingosx"; + repo = "desktoppr"; + tag = "v${finalAttrs.version}"; + hash = "sha256-eEVcYSa1ntyX/Wdj4HUyXyXIrK+T11Thg23ntNoIgH0="; + }; + + patches = [ + # Update version in the code from 0.5b (beta) to 0.5 (release) + (fetchpatch { + url = "https://github.com/scriptingosx/desktoppr/commit/419363c28c99eb0f391bf231813af5e507c35573.patch"; + hash = "sha256-7A3hsXO0hZYlZMrX1U0zC2vy59M9H5OZebEbPY8E9fA="; + includes = [ "desktoppr/main.swift" ]; + }) + # Adds support for building with swiftpm + (fetchpatch { + url = "https://github.com/scriptingosx/desktoppr/commit/eaf08da7cdd5fe9aa656516b3a5a0a9ac9969e72.patch"; + hash = "sha256-8sAUNnTGqQ2UHIFUPwTP0dd3QKgI0HfOrG0HzcIStMM="; + }) + ]; + + nativeBuildInputs = [ + swift + swiftpm + ]; + + installPhase = '' + runHook preInstall + install -Dm755 "$(swiftpmBinPath)/desktoppr" -t "$out/bin" + runHook postInstall + ''; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + + versionCheckProgramArg = "version"; + doInstallCheck = true; + + meta = { + description = "Simple command line tool to read and set the desktop picture/wallpaper"; + homepage = "https://github.com/scriptingosx/desktoppr"; + platforms = lib.platforms.darwin; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ andre4ik3 ]; + mainProgram = "desktoppr"; + }; +})