mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-22 20:17:15 +01:00
pkgs: Add inkscape to rmc
This commit is contained in:
parent
25ad55c3d3
commit
91cbff5a62
1 changed files with 7 additions and 0 deletions
|
|
@ -2,6 +2,8 @@
|
|||
lib,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
inkscape,
|
||||
makeWrapper,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
|
|
@ -21,6 +23,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
makeWrapper
|
||||
click
|
||||
rmscene
|
||||
];
|
||||
|
|
@ -29,6 +32,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||
"rmc"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/rmc --prefix PATH : ${lib.makeBinPath [ inkscape ]}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Convert to/from v6 .rm files from the reMarkable tablet";
|
||||
homepage = "https://github.com/ricklupton/rmc";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue