Skip to content

Commit

Permalink
dgedit: init at 0.10.0
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
  • Loading branch information
matthiasbeyer committed Feb 1, 2021
1 parent 26187c6 commit edd795c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/applications/audio/dgedit/default.nix
@@ -0,0 +1,35 @@
{ stdenv
, lib
, fetchgit
, pkg-config
, autoreconfHook
, libao
, libsndfile
, qtbase
, qtx11extras
, qttools
, wrapQtAppsHook
}:

stdenv.mkDerivation rec {
pname = "dgedit";
version = "0.10.0";

src = fetchgit {
url = "git://git.drumgizmo.org/dgedit.git/";
rev = "v${version}";
sha256 = "11mcfa6h61q0gk0ynfpqql4lnih0m3y2z9mdjq4p1219hrapxs5q";
fetchSubmodules = true;
};

nativeBuildInputs = [ pkg-config autoreconfHook wrapQtAppsHook ];
buildInputs = [ qtbase qtx11extras qttools libao libsndfile ];

meta = with lib; {
description = "the DrumGizmo drumkit editor";
homepage = "https://drumgizmo.org/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.matthiasbeyer ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -17613,6 +17613,8 @@ in
python3Packages = python36Packages;
};

dgedit = libsForQt5.callPackage ../applications/audio/dgedit { };

dgraph = callPackage ../servers/dgraph { };

dico = callPackage ../servers/dico { };
Expand Down

0 comments on commit edd795c

Please sign in to comment.