Merge pull request #117606 from bgamari/graphia
This commit is contained in:
commit
c037394f5f
2 changed files with 35 additions and 0 deletions
33
pkgs/applications/science/misc/graphia/default.nix
Normal file
33
pkgs/applications/science/misc/graphia/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ stdenv, lib, cmake, fetchFromGitHub
|
||||
, wrapQtAppsHook, qtbase, qtquickcontrols2, qtgraphicaleffects
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "graphia";
|
||||
version = "2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "graphia-app";
|
||||
repo = "graphia";
|
||||
rev = version;
|
||||
sha256 = "sha256:05givvvg743sawqy2vhljkfgn5v1s907sflsnsv11ddx6x51na1w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
wrapQtAppsHook
|
||||
];
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtquickcontrols2
|
||||
qtgraphicaleffects
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A visualisation tool for the creation and analysis of graphs.";
|
||||
homepage = "https://graphia.app";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = [ maintainers.bgamari ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -14974,6 +14974,8 @@ in
|
|||
|
||||
ghcid = haskellPackages.ghcid.bin;
|
||||
|
||||
graphia = libsForQt5.callPackage ../applications/science/misc/graphia { };
|
||||
|
||||
icon-lang = callPackage ../development/interpreters/icon-lang { };
|
||||
|
||||
libgit2 = callPackage ../development/libraries/git2 {
|
||||
|
|
Loading…
Reference in a new issue