1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
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];
}