Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / fa / fasole / package.nix
blob81df4e88d424aef61d64790b8b32b1458d8f7e30
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "fasole";
5   version = "1.2.3";
7   src = fetchFromGitHub {
8     owner = "ProggerX";
9     repo = "fasole";
10     rev = "v${version}";
11     hash = "sha256-qcCJgz/YXfd8+9ST1U4YFxLLd25D8HrfZzsDGpKgCdM=";
12   };
14   vendorHash = "sha256-V5jqsNy4Pu1AKikIZqEXERdggwBe3gXKMJVmgivVT6A=";
16   meta = {
17     description = "Minimalist's todo-list";
18     homepage = "https://github.com/ProggerX/fasole";
19     license = lib.licenses.gpl3Only;
20     maintainers = with lib.maintainers; [ proggerx ];
21     mainProgram = "fasole";
22   };