nixpkgs/pkgs/applications/audio/sfxr-qt/default.nix

41 lines
836 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
2018-10-30 12:56:57 +01:00
, cmake
, qtbase
, qtquickcontrols2
2018-10-30 12:56:57 +01:00
, SDL
, python3
}:
mkDerivation rec {
pname = "sfxr-qt";
2018-10-30 12:56:57 +01:00
version = "1.2.0";
src = fetchFromGitHub {
owner = "agateau";
repo = "sfxr-qt";
rev = version;
sha256 = "1ndw1dcmzvkrc6gnb0y057zb4lqlhwrv18jlbx26w3s4xrbxqr41";
fetchSubmodules = true;
};
nativeBuildInputs = [
cmake
(python3.withPackages (pp: with pp; [ pyyaml jinja2 setuptools ]))
2018-10-30 12:56:57 +01:00
];
buildInputs = [
qtbase
qtquickcontrols2
2018-10-30 12:56:57 +01:00
SDL
];
configurePhase = "cmake . -DCMAKE_INSTALL_PREFIX=$out";
meta = with lib; {
2018-10-30 12:56:57 +01:00
homepage = https://github.com/agateau/sfxr-qt;
description = "A sound effect generator, QtQuick port of sfxr";
license = licenses.gpl2;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.linux;
};
}