mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
a24960d214
Add ApplicationServices for Darwin build Clean up comments
11 lines
236 B
Nix
11 lines
236 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "autofig-0.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://autotrace.sourceforge.net/tools/autofig.tar.gz";
|
|
sha256 = "11cs9hdbgcl3aamcs3149i8kvyyldmnjf6yq81kbcf8fdmfk2zdq";
|
|
};
|
|
}
|