nixpkgs/pkgs/desktops/gnome/startup-notification.nix

7 lines
129 B
Nix
Raw Normal View History

{input, stdenv, fetchurl, pkgconfig, x11}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig x11];
}