blob: 17b8a059a88b7bc215cfb7e74d65f1cae6242653 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
libusb1,
sfml_2,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cutecapture";
version = "1.4.0";
src = fetchFromGitHub {
owner = "Gotos";
repo = "cutecapture";
tag = "v${finalAttrs.version}";
hash = "sha256-V8BlZykh9zOTcEypu96Ft9/6CtjsybtD8lBsg9sF5sQ=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
libusb1
sfml_2
];
postPatch = ''
cat > get_version.sh <<EOF
#!${stdenv.shell}
echo ${lib.escapeShellArg finalAttrs.version}
EOF
'';
doInstallCheck = true;
postInstall = ''
install -Dm644 -t $out/lib/udev/rules.d 95-{3,}dscapture.rules
install -Dm444 -t $out/share/applications Cute{3,}DSCapture.desktop
install -Dm444 -t $out/share/icons/hicolor/128x128/apps Cute{3,}DSCapture.png
'';
meta = {
description = "(3)DS capture software for Linux and Mac";
homepage = "https://github.com/Gotos/CuteCapture";
license = lib.licenses.asl20;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ raphaelr ];
};
})
|