forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
66 lines
972 B
Nix
66 lines
972 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, pkgconfig
|
|
, gtk2
|
|
, bison
|
|
, intltool
|
|
, flex
|
|
, netpbm
|
|
, imagemagick
|
|
, dbus
|
|
, xlibsWrapper
|
|
, libGLU
|
|
, libGL
|
|
, shared-mime-info
|
|
, tcl
|
|
, tk
|
|
, gnome2
|
|
, gd
|
|
, xorg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pcb";
|
|
version = "4.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pcb/${pname}-${version}.tar.gz";
|
|
sha256 = "0pbfyfadbia1jf9ywkf02j8mfdh8c3mj390c2jdqnl70vcdszvhw";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
bison
|
|
intltool
|
|
flex
|
|
netpbm
|
|
imagemagick
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2
|
|
dbus
|
|
xlibsWrapper
|
|
libGLU
|
|
libGL
|
|
tcl
|
|
shared-mime-info
|
|
tk
|
|
gnome2.gtkglext
|
|
gd
|
|
xorg.libXmu
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-update-desktop-database"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Printed Circuit Board editor";
|
|
homepage = "http://pcb.geda-project.org/";
|
|
maintainers = with maintainers; [ mog ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|