oddjob: format with nixfmt-rfc-style, remove `with lib;`

This commit is contained in:
Anthony Roussel 2024-04-07 00:01:51 +02:00
parent f42230b64c
commit d30b2fe2d2
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 21 additions and 20 deletions

View File

@ -1,14 +1,15 @@
{ lib
, fetchpatch
, fetchurl
, stdenv
, autoreconfHook
, dbus
, libxml2
, nixosTests
, pam
, pkg-config
, systemd
{
autoreconfHook,
dbus,
fetchpatch,
fetchurl,
lib,
libxml2,
nixosTests,
pam,
pkg-config,
stdenv,
systemd,
}:
stdenv.mkDerivation rec {
@ -16,8 +17,8 @@ stdenv.mkDerivation rec {
version = "0.34.7";
src = fetchurl {
url = "https://pagure.io/oddjob/archive/${pname}-${version}/oddjob-${pname}-${version}.tar.gz";
hash = "sha256-SUOsMH55HtEsk5rX0CXK0apDObTj738FGOaL5xZRnIM=";
url = "https://pagure.io/oddjob/archive/${pname}-${version}/oddjob-${pname}-${version}.tar.gz";
hash = "sha256-SUOsMH55HtEsk5rX0CXK0apDObTj738FGOaL5xZRnIM=";
};
patches = [
@ -33,9 +34,9 @@ stdenv.mkDerivation rec {
pkg-config
];
buildInputs =[
libxml2
buildInputs = [
dbus
libxml2
pam
systemd
];
@ -60,12 +61,12 @@ stdenv.mkDerivation rec {
inherit (nixosTests) oddjobd;
};
meta = with lib; {
meta = {
changelog = "https://pagure.io/oddjob/blob/oddjob-${version}/f/ChangeLog";
description = "Odd Job Daemon";
homepage = "https://pagure.io/oddjob";
changelog = "https://pagure.io/oddjob/blob/oddjob-${version}/f/ChangeLog";
license = licenses.bsd0;
platforms = platforms.linux;
maintainers = with maintainers; [ SohamG ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ SohamG ];
platforms = lib.platforms.linux;
};
}