9 stdenv.mkDerivation (finalAttrs: {
10 pname = "cutecapture";
13 src = fetchFromGitHub {
16 rev = "v${finalAttrs.version}";
17 hash = "sha256-V8BlZykh9zOTcEypu96Ft9/6CtjsybtD8lBsg9sF5sQ=";
30 cat > get_version.sh <<EOF
32 echo ${lib.escapeShellArg finalAttrs.version}
37 install -Dm644 -t $out/lib/udev/rules.d 95-{3,}dscapture.rules
38 install -Dm444 -t $out/share/applications Cute{3,}DSCapture.desktop
39 install -Dm444 -t $out/share/icons/hicolor/128x128/apps Cute{3,}DSCapture.png
43 description = "(3)DS capture software for Linux and Mac";
44 homepage = "https://github.com/Gotos/CuteCapture";
45 license = licenses.asl20;
46 platforms = platforms.linux ++ platforms.darwin;
47 maintainers = with maintainers; [ raphaelr ];