1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/pkgs/tools/graphics/rocket/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

33 lines
784 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 ];
};
}