mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00
pencil2d: init at 0.7.0 (#402895)
This commit is contained in:
parent
bab385dd73
commit
e2cbbf11fc
1 changed files with 41 additions and 0 deletions
41
pkgs/by-name/pe/pencil2d/package.nix
Normal file
41
pkgs/by-name/pe/pencil2d/package.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
qt5,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (FinalAttrs: {
|
||||
pname = "pencil2d";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pencil2d";
|
||||
repo = "pencil";
|
||||
tag = "v${FinalAttrs.version}";
|
||||
hash = "sha256-OuZpKgX2BgfuQdnjk/RTBww/blO1CIrYWr7KytqcIbQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with qt5; [
|
||||
qmake
|
||||
wrapQtAppsHook
|
||||
qttools
|
||||
];
|
||||
|
||||
buildInputs = with qt5; [
|
||||
qtbase
|
||||
qtmultimedia
|
||||
qtsvg
|
||||
qtwayland
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Easy, intuitive tool to make 2D hand-drawn animations";
|
||||
homepage = "https://www.pencil2d.org/";
|
||||
downloadPage = "https://github.com/pencil2d/pencil";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = with lib.maintainers; [ agvantibo ];
|
||||
platforms = lib.platforms.linux;
|
||||
mainProgram = "pencil2d";
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue