Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 592 B view raw
1{ 2 buildGoModule, 3 fetchFromGitHub, 4 lib, 5}: 6buildGoModule rec { 7 pname = "emoji-picker"; 8 version = "0.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "bcongdon"; 12 repo = "ep"; 13 rev = version; 14 hash = "sha256-ElUsmuJ43kOsu4cGvNytM+xHTfuzMo0jcG8Z1cIeHJs="; 15 }; 16 17 patches = [ ./xsys.patch ]; 18 19 vendorHash = "sha256-Xeh5JKIBiyOXRGVx9udoUNs+Wv49BMyFvmnAbDfG3rA="; 20 21 meta = with lib; { 22 description = "CLI Emoji Picker"; 23 homepage = "https://github.com/bcongdon/ep"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ urandom ]; 26 mainProgram = "ep"; 27 }; 28}