obb: switch to fetchFromGitHub

This commit is contained in:
Will Cohen 2022-01-05 08:35:16 -05:00
parent 41b8b3a7d6
commit b65eb7ec84

View file

@ -7,6 +7,7 @@
, git
, jdk
, callPackage
, fetchFromGitHub
, makeWrapper
, runCommand }:
@ -14,9 +15,11 @@ stdenv.mkDerivation rec {
pname = "obb";
version = "0.0.1";
src = fetchurl {
url = "https://github.com/babashka/${pname}/archive/refs/tags/v${version}.tar.gz";
sha256 = "sha256-ZVd3VCJ7vdQGQ7iY5v2b+gRX/Ni0/03hzqBElqpPvpI=";
src = fetchFromGitHub {
owner = "babashka";
repo = pname;
rev = "v${version}";
sha256 = "sha256-WxQjBg6el6XMiHTurmSo1GgZnTdaJjRmcV3+3X4yohc=";
};
nativeBuildInputs = [ makeWrapper ];