diff options
Diffstat (limited to 'pkgs/applications/graphics/autotrace/default.nix')
-rw-r--r-- | pkgs/applications/graphics/autotrace/default.nix | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/pkgs/applications/graphics/autotrace/default.nix b/pkgs/applications/graphics/autotrace/default.nix deleted file mode 100644 index 30cf116fed14..000000000000 --- a/pkgs/applications/graphics/autotrace/default.nix +++ /dev/null @@ -1,60 +0,0 @@ -{ lib -, stdenv -, fetchFromGitHub -, fetchpatch -, autoreconfHook -, gettext -, intltool -, pkg-config -, glib -, imagemagick -, libpng -, pstoedit -, darwin -}: - -stdenv.mkDerivation rec { - pname = "autotrace"; - version = "0.31.9"; - - src = fetchFromGitHub { - owner = "autotrace"; - repo = "autotrace"; - rev = version; - hash = "sha256-8qqB6oKmbz95dNLtdLvb69cEj/P7TzdoKEyJ8+4ITzs="; - }; - - patches = [ - (fetchpatch { - # https://github.com/autotrace/autotrace/pull/105 - name = "imagemagick7-support.patch"; - url = "https://github.com/autotrace/autotrace/compare/170488e1871d50aad7a800b901e33ded7d31773a...c26a2a059926c595a00839c8d9961e9381206579.patch"; - hash = "sha256-Q82LRF/BsJ/Ii2s+7yaYHs9agMKYVYIMnbwqz8P92s0="; - }) - ]; - - nativeBuildInputs = [ - autoreconfHook - gettext - intltool - pkg-config - ]; - - buildInputs = [ - glib - imagemagick - libpng - pstoedit - ] ++ lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.Foundation - ]; - - meta = with lib; { - homepage = "https://github.com/autotrace/autotrace"; - description = "Utility for converting bitmap into vector graphics"; - platforms = platforms.unix; - maintainers = with maintainers; [ hodapp ]; - license = licenses.gpl2; - mainProgram = "autotrace"; - }; -} |