Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule { 8 pname = "sourcemapper"; 9 version = "0-unstable-2024-03-22"; 10 11 src = fetchFromGitHub { 12 owner = "denandz"; 13 repo = "sourcemapper"; 14 rev = "467916e59f9f28f2df3c2fb209db32dabd057c92"; 15 hash = "sha256-JuP8ElLyG+FynH0YYZqpZejbAwcCq5d9lj5hJYGW7+g="; 16 }; 17 18 vendorHash = null; 19 20 meta = { 21 description = "Extract JavaScript source trees from Sourcemap files"; 22 homepage = "https://github.com/denandz/sourcemapper"; 23 license = lib.licenses.bsd3; 24 mainProgram = "sourcemapper"; 25 maintainers = with lib.maintainers; [ 26 emilytrau 27 crem 28 ]; 29 }; 30}