Files
nixpkgs/pkgs/tools/graphics/rocket/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

39 lines
795 B
Nix

{
mkDerivation,
lib,
fetchFromGitHub,
qmake,
qtbase,
}:
mkDerivation {
pname = "rocket";
version = "2018-06-09";
src = fetchFromGitHub {
owner = "rocket";
repo = "rocket";
rev = "7bc1e9826cad5dbc63e56371c6aa1798b2a7b50b";
sha256 = "13bdg2dc6ypk17sz39spqdlb3wai2y085bdb36pls2as2nf22drp";
};
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase ];
dontConfigure = true;
installPhase = ''
mkdir -p $out/bin
cp -r editor/editor $out/bin/
'';
meta = with lib; {
description = "Tool for synchronizing music and visuals in demoscene productions";
mainProgram = "editor";
homepage = "https://github.com/rocket/rocket";
license = licenses.zlib;
platforms = platforms.linux;
maintainers = [ maintainers.dezgeg ];
};
}