mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
22 lines
612 B
Nix
22 lines
612 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libintl }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "desktop-file-utils-0.23";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz";
|
|
sha256 = "119kj2w0rrxkhg4f9cf5waa55jz1hj8933vh47vcjipcplql02bc";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib libintl ];
|
|
|
|
meta = {
|
|
homepage = http://www.freedesktop.org/wiki/Software/desktop-file-utils;
|
|
description = "Command line utilities for working with .desktop files";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|