nixpkgs/pkgs/applications/graphics/autotrace/autofig.nix

12 lines
248 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
pname = "autofig";
version = "0.1";
src = fetchurl {
url = "http://autotrace.sourceforge.net/tools/autofig.tar.gz";
sha256 = "11cs9hdbgcl3aamcs3149i8kvyyldmnjf6yq81kbcf8fdmfk2zdq";
};
}