mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
init: pixel2svg at 0.3.0 (#170487)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
527457cadc
commit
f7fd2ee680
2 changed files with 22 additions and 0 deletions
20
pkgs/tools/graphics/pixel2svg/default.nix
Normal file
20
pkgs/tools/graphics/pixel2svg/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildPythonPackage, fetchurl, python310Packages }:
|
||||
|
||||
python310Packages.buildPythonPackage rec {
|
||||
pname = "pixel2svg";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://static.florian-berger.de/pixel2svg-${version}.zip";
|
||||
sha256 = "sha256-aqcTTmZKcdRdVd8GGz5cuaQ4gjPapVJNtiiZu22TZgQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python310Packages; [ pillow svgwrite ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://florian-berger.de/en/software/pixel2svg/";
|
||||
description = "Converts pixel art to SVG - pixel by pixel";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ papojari ];
|
||||
};
|
||||
}
|
|
@ -26945,6 +26945,8 @@ with pkgs;
|
|||
|
||||
pinboard-notes-backup = haskell.lib.compose.justStaticExecutables haskellPackages.pinboard-notes-backup;
|
||||
|
||||
pixel2svg = python310Packages.callPackage ../tools/graphics/pixel2svg { };
|
||||
|
||||
pixelnuke = callPackage ../applications/graphics/pixelnuke { };
|
||||
|
||||
pixeluvo = callPackage ../applications/graphics/pixeluvo { };
|
||||
|
|
Loading…
Reference in a new issue