uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
47
pkgs/applications/office/grisbi/default.nix
Normal file
47
pkgs/applications/office/grisbi/default.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{ fetchurl
|
||||
, lib, stdenv
|
||||
, gtk
|
||||
, pkg-config
|
||||
, libgsf
|
||||
, libofx
|
||||
, intltool
|
||||
, wrapGAppsHook
|
||||
, libsoup
|
||||
, gnome
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "grisbi";
|
||||
version = "2.0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/grisbi/${pname}-${version}.tar.bz2";
|
||||
sha256 = "sha256-vTrbq/xLTfwF7/YtKzZFiiSw8A0HzzWin2ry8gPHej8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
||||
buildInputs = [
|
||||
gtk
|
||||
libgsf
|
||||
libofx
|
||||
intltool
|
||||
libsoup
|
||||
gnome.adwaita-icon-theme
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A personnal accounting application";
|
||||
longDescription = ''
|
||||
Grisbi is an application written by French developers, so it perfectly
|
||||
respects French accounting rules. Grisbi can manage multiple accounts,
|
||||
currencies and users. It manages third party, expenditure and receipt
|
||||
categories, budgetary lines, financial years, budget estimates, bankcard
|
||||
management and other information that make Grisbi adapted for
|
||||
associations.
|
||||
'';
|
||||
homepage = "https://grisbi.org";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ layus ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue