mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
disomaster: init at 5.0.8
This commit is contained in:
parent
88d1f28740
commit
7d5b5077b8
@ -11,7 +11,7 @@ let
|
|||||||
dtkwidget = callPackage ./library/dtkwidget { };
|
dtkwidget = callPackage ./library/dtkwidget { };
|
||||||
qt5platform-plugins = callPackage ./library/qt5platform-plugins { };
|
qt5platform-plugins = callPackage ./library/qt5platform-plugins { };
|
||||||
qt5integration = callPackage ./library/qt5integration { };
|
qt5integration = callPackage ./library/qt5integration { };
|
||||||
|
disomaster = callPackage ./library/disomaster { };
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
lib.makeScope libsForQt5.newScope packages
|
lib.makeScope libsForQt5.newScope packages
|
||||||
|
40
pkgs/desktops/deepin/library/disomaster/default.nix
Normal file
40
pkgs/desktops/deepin/library/disomaster/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, qmake
|
||||||
|
, qttools
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, libisoburn
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "disomaster";
|
||||||
|
version = "5.0.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "linuxdeepin";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-wN8mhddqqzYXkT6rRWsHVCWzaG2uRcF2iiFHlZx2LfY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
qmake
|
||||||
|
qttools
|
||||||
|
pkg-config
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ libisoburn ];
|
||||||
|
|
||||||
|
qmakeFlags = [ "VERSION=${version}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A libisoburn wrapper class for Qt";
|
||||||
|
homepage = "https://github.com/linuxdeepin/disomaster";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = teams.deepin.members;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user