nixpkgs/pkgs/development/tools/misc/awf/default.nix

38 lines
979 B
Nix
Raw Normal View History

2016-08-15 10:17:56 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, gtk2, gtk3, pkgconfig
, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "awf";
version = "1.4.0";
2016-08-15 10:17:56 +00:00
src = fetchFromGitHub {
owner = "valr";
repo = "awf";
rev = "v${version}";
sha256 = "0jl2kxwpvf2n8974zzyp69mqhsbjnjcqm39y0jvijvjb1iy8iman";
2016-08-15 10:17:56 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
buildInputs = [ gtk2 gtk3 ];
autoreconfPhase = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
meta = with stdenv.lib; {
description = "A Widget Factory";
longDescription = ''
A widget factory is a theme preview application for gtk2 and
gtk3. It displays the various widget types provided by gtk2/gtk3
in a single window allowing to see the visual effect of the
applied theme.
'';
homepage = "https://github.com/valr/awf";
2016-08-15 10:17:56 +00:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ michalrus ];
};
}