mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
lazpaint: format with nixfmt-rfc-style
This commit is contained in:
parent
df56fd90bf
commit
028da5a73b
@ -1,6 +1,18 @@
|
||||
{ lib, stdenv, fetchFromGitHub, lazarus, fpc, pango, cairo, glib
|
||||
, atk, gtk2, libX11, gdk-pixbuf, python3
|
||||
, makeWrapper
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
lazarus,
|
||||
fpc,
|
||||
pango,
|
||||
cairo,
|
||||
glib,
|
||||
atk,
|
||||
gtk2,
|
||||
libX11,
|
||||
gdk-pixbuf,
|
||||
python3,
|
||||
makeWrapper,
|
||||
}:
|
||||
|
||||
let
|
||||
@ -16,7 +28,8 @@ let
|
||||
rev = "v8.0";
|
||||
hash = "sha256-5L05eGVN+xncd0/0XLFN6EL2ux4aAOsiU0BMoy0dKgg=";
|
||||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lazpaint";
|
||||
version = "7.2.2-unstable-2024-01-20";
|
||||
|
||||
@ -27,9 +40,21 @@ in stdenv.mkDerivation rec {
|
||||
hash = "sha256-LaOTJiS+COJUlyJiN9H2kEKwv5lbJqOHsUXOnb+IQFA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ lazarus fpc makeWrapper ];
|
||||
nativeBuildInputs = [
|
||||
lazarus
|
||||
fpc
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [ pango cairo glib atk gtk2 libX11 gdk-pixbuf ];
|
||||
buildInputs = [
|
||||
pango
|
||||
cairo
|
||||
glib
|
||||
atk
|
||||
gtk2
|
||||
libX11
|
||||
gdk-pixbuf
|
||||
];
|
||||
|
||||
NIX_LDFLAGS = "--as-needed -rpath ${lib.makeLibraryPath buildInputs}";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user