Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 20 lines 590 B view raw
1{ lib, fetchzip, buildDunePackage, camomile, result }: 2 3buildDunePackage rec { 4 pname = "charInfo_width"; 5 version = "1.1.0"; 6 duneVersion = "3"; 7 src = fetchzip { 8 url = "https://bitbucket.org/zandoye/charinfo_width/get/${version}.tar.bz2"; 9 sha256 = "19mnq9a1yr16srqs8n6hddahr4f9d2gbpmld62pvlw1ps7nfrp9w"; 10 }; 11 12 propagatedBuildInputs = [ camomile result ]; 13 14 meta = { 15 homepage = "https://bitbucket.org/zandoye/charinfo_width/"; 16 description = "Determine column width for a character"; 17 license = lib.licenses.mit; 18 maintainers = [ lib.maintainers.vbgl ]; 19 }; 20}