outguess: nixfmt; enable strictDeps; modernize (#349412)

This commit is contained in:
Peder Bergebakken Sundt 2024-10-21 00:04:46 +02:00 committed by GitHub
commit 1b678e53e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,8 @@
{ fetchFromGitHub
, stdenv
, lib
, autoreconfHook
{
fetchFromGitHub,
stdenv,
lib,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
@ -11,12 +12,14 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "resurrecting-open-source-projects";
repo = "outguess";
rev = finalAttrs.version;
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-yv01jquPTnVk9fd1tqAt1Lxis+ZHZqdG3NiTFxfoXAE=";
};
nativeBuildInputs = [ autoreconfHook ];
strictDeps = true;
configureFlags = [ "--with-generic-jconfig" ];
meta = {