mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, libusb1
|
|
, sfml
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cutecapture";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Gotos";
|
|
repo = "cutecapture";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-V8BlZykh9zOTcEypu96Ft9/6CtjsybtD8lBsg9sF5sQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
sfml
|
|
];
|
|
|
|
postPatch = ''
|
|
cat > get_version.sh <<EOF
|
|
#!${stdenv.shell}
|
|
echo ${lib.escapeShellArg finalAttrs.version}
|
|
EOF
|
|
'';
|
|
|
|
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 = with lib; {
|
|
description = "(3)DS capture software for Linux and Mac";
|
|
homepage = "https://github.com/Gotos/CuteCapture";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ raphaelr ];
|
|
};
|
|
})
|