home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

default.nix (546B)


      1 { stdenv, lib, buildGoPackage, fetchFromGitHub }:
      2 
      3 buildGoPackage rec {
      4   name = "yaspell-${version}";
      5   version = "1.0.4";
      6   rev = "${version}";
      7 
      8   goPackagePath = "github.com/vodkabears/yaspell";
      9 
     10   src = fetchFromGitHub {
     11     inherit rev;
     12     owner = "vodkabears";
     13     repo = "yaspell";
     14     sha256 = "0mjsf10qwz3p88ynndcm6ss62kmb7ca45k95xjqp5p02xgqssn0y";
     15   };
     16 
     17   meta = {
     18     description = "Spell checking tool for various texts written in golang";
     19     homepage = https://github.com/vodkabears/yaspell;
     20     license = lib.licenses.mit;
     21   };
     22 }