at 23.11-beta 25 lines 569 B view raw
1{ rustPlatform 2, fetchFromGitHub 3, lib 4}: rustPlatform.buildRustPackage rec { 5 6 pname = "bkt"; 7 version = "0.7.1"; 8 9 src = fetchFromGitHub { 10 owner = "dimo414"; 11 repo = pname; 12 rev = version; 13 sha256 = "sha256-CMCO1afTWhXlWpy9D7txqI1FHxGDgdVdkKtyei6oFJU="; 14 }; 15 16 cargoHash = "sha256-T4JT8GzKqsQQfe3zfst6gNEvdY7zs2h2H3s6slaRhYY="; 17 18 meta = { 19 description = "A subprocess caching utility"; 20 homepage = "https://github.com/dimo414/bkt"; 21 license = lib.licenses.mit; 22 maintainers = [ lib.maintainers.mangoiv ]; 23 mainProgram = "bkt"; 24 }; 25}