depot/third_party/nixpkgs/pkgs/development/libraries/rinutils/default.nix

22 lines
464 B
Nix
Raw Normal View History

{
stdenv, lib, fetchurl,
cmake, perl,
}:
stdenv.mkDerivation rec {
pname = "rinutils";
version = "0.10.1";
meta = with lib; {
homepage = "https://github.com/shlomif/rinutils";
license = licenses.mit;
};
src = fetchurl {
url = "https://github.com/shlomif/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-MewljOmd57u+efMzjOcwSNrEVCUEXrK9DWvZLRuLmvs=";
};
nativeBuildInputs = [ cmake perl ];
}