Skip to content

Commit

Permalink
Add default.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanSchroeder committed May 28, 2023
1 parent 9671199 commit cd1b152
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ buildGoModule , fetchFromGitHub , lib
}:
buildGoModule rec {
pname = "ttfsample";
version = "0.3.0";

src = fetchFromGitHub {
owner = "StefanSchroeder";
repo = "ttfsample";
rev = "${version}";
hash = "sha256-qB6n0xaBvjmBOOId4SLjc5Oi59DbtvLdSUw98AZcn0o=";

};
vendorSha256 = "sha256-7kse3MYIj3Q0WL/fgR6TFmMGNQUSKuJM7+IqB83rwFY=";
meta = with lib; {
description = "Create images of fonts";
homepage = "https://github.com/StefanSchroeder/ttfsample";
license = licenses.mit;
maintainers = with maintainers; [ stefanschroeder ];
mainProgram = "ttfsample";
};
}

0 comments on commit cd1b152

Please sign in to comment.