honeyfetch: init at 1.5.0

authored by Aaron Honeycutt and committed by Aaron Honeycutt 3b24ca13 dacc25b0

+29
+29
pkgs/by-name/ho/honeyfetch/package.nix
··· 1 + { 2 + lib, 3 + libdrm, 4 + fetchFromGitLab, 5 + rustPlatform, 6 + }: 7 + rustPlatform.buildRustPackage (finalAttrs: { 8 + pname = "honeyfetch"; 9 + version = "1.5.0"; 10 + 11 + src = fetchFromGitLab { 12 + owner = "ahoneybun"; 13 + repo = "honeyfetch"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-lFp7L3tcqZ1jAL7V7tfUJDPKO2WCvMekUx+p12fNlcM="; 16 + }; 17 + 18 + cargoHash = "sha256-u+OF4ali7GoHktY8jihgqUQ+4kFuKQNbiaRUdOJrQfA="; 19 + 20 + buildInputs = [ libdrm ]; 21 + 22 + meta = { 23 + description = "Classy neofetch but in Rust"; 24 + homepage = "https://gitlab.com/ahoneybun/honeyfetch"; 25 + license = lib.licenses.agpl3Plus; 26 + maintainers = with lib.maintainers; [ ahoneybun ]; 27 + platforms = lib.platforms.linux; 28 + }; 29 + })