depot/third_party/nixpkgs/pkgs/tools/graphics/rocket/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

31 lines
758 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 = "A tool for synchronizing music and visuals in demoscene productions";
homepage = "https://github.com/rocket/rocket";
license = licenses.zlib;
platforms = platforms.linux;
maintainers = [ maintainers.dezgeg ];
};
}