nixpkgs/pkgs/by-name/xd/xdg-launch/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

58 lines
1.0 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, autoconf
, automake
, gettext
, libtool
, perl
, pkg-config
, glib
, xorg
}:
stdenv.mkDerivation rec {
pname = "xdg-launch";
version = "1.12";
postPatch = ''
# fix gettext configuration
echo 'AM_GNU_GETTEXT_VERSION' >> configure.ac
echo 'AM_GNU_GETTEXT([external])' >> configure.ac
sed -i data/*.desktop \
-e "s,/usr/bin,/$out/bin,g"
'';
src = fetchFromGitHub {
owner = "bbidulock";
repo = pname;
rev = version;
sha256 = "sha256-S/0Wn1T5MSOPN6QXkzfmygHL6XTAnnMJr5Z3fBzsHEw=";
};
preConfigure = "./autogen.sh";
buildInputs = [
xorg.libX11
xorg.libXrandr
glib # can be optional
];
nativeBuildInputs = [
autoconf
automake
gettext
libtool
perl # pod2man
pkg-config
];
meta = with lib; {
homepage = "https://github.com/bbidulock/xdg-launch";
description = "Command line XDG compliant launcher and tools";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.ck3d ];
};
}