Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 20 lines 497 B view raw
1{ lib, buildFishPlugin, fetchFromGitHub }: 2 3buildFishPlugin rec { 4 pname = "pisces"; 5 version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "laughedelic"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-Oou2IeNNAqR00ZT3bss/DbhrJjGeMsn9dBBYhgdafBw="; 12 }; 13 14 meta = with lib; { 15 description = "Paired symbols in the command line"; 16 homepage = "https://github.com/laughedelic/pisces"; 17 license = licenses.lgpl3; 18 maintainers = with maintainers; [ vanilla ]; 19 }; 20}