mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
531e4b80c9
Only acts on one-line dependency lists.
23 lines
678 B
Nix
23 lines
678 B
Nix
{ stdenv, fetchurl, python, gettext, intltool, pkgconfig, gtk, gvfs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
p_name = "gigolo";
|
|
ver_maj = "0.4";
|
|
ver_min = "2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/apps/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "0r4ij0mlnp0bqq44pyrdcpz18r1zwsksw6w5yc0jzgg7wj7wfgsm";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ python gettext intltool gtk gvfs];
|
|
|
|
meta = {
|
|
homepage = "http://goodies.xfce.org/projects/applications/${p_name}";
|
|
description = "A frontend to easily manage connections to remote filesystems";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|