Skip to content

Commit

Permalink
scour: init at 0.37
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace authored and nek0 committed Aug 11, 2018
1 parent 1e24550 commit 76de638
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/graphics/scour/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, python3 }:

with python3.pkgs;

buildPythonApplication rec {
pname = "scour";
version = "0.37";

src = fetchPypi {
inherit pname version;
sha256 = "05k1f8i8v7sp5v39lian865vwvapq05a6vmvk7fwnxv8kivi6ccn";
};

propagatedBuildInputs = [ six ];

meta = with stdenv.lib; {
description = "An SVG Optimizer / Cleaner ";
homepage = https://github.com/scour-project/scour;
license = licenses.asl20;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1458,6 +1458,8 @@ with pkgs;

parallel-rust = callPackage ../tools/misc/parallel-rust { };

scour = callPackage ../tools/graphics/scour { };

s2png = callPackage ../tools/graphics/s2png { };

simg2img = callPackage ../tools/filesystems/simg2img { };
Expand Down

0 comments on commit 76de638

Please sign in to comment.