mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
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
41 lines
990 B
Nix
41 lines
990 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, pkg-config
|
|
, dbus, dbus-glib, gtk3, gdk-pixbuf, librsvg
|
|
, fortune
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xcowsay";
|
|
version = "1.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.nickg.me.uk/files/xcowsay-${version}.tar.gz";
|
|
sha256 = "0pyaa062z1ag26dhkm1yzp2hivnlmhlpqn5xg7mx9r1m652mm91y";
|
|
};
|
|
|
|
buildInputs = [
|
|
dbus
|
|
dbus-glib
|
|
gtk3
|
|
gdk-pixbuf # loading cow images
|
|
librsvg # dreaming SVG images
|
|
];
|
|
nativeBuildInputs = [ makeWrapper pkg-config ];
|
|
|
|
configureFlags = [ "--enable-dbus" ];
|
|
|
|
postInstall = ''
|
|
for tool in xcowdream xcowsay xcowthink xcowfortune; do
|
|
wrapProgram $out/bin/$tool \
|
|
--prefix PATH : $out/bin:${fortune}/bin
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.doof.me.uk/xcowsay";
|
|
description =
|
|
"A program based on cowsay that displays a cute cow and message on your desktop";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ das_j ];
|
|
};
|
|
}
|