nixpkgs/pkgs/applications/misc/ssw/default.nix
2024-04-19 07:33:51 +03:30

22 lines
536 B
Nix

{ lib, stdenv, fetchurl, pkg-config, gtk3 }:
stdenv.mkDerivation rec {
pname = "ssw";
version = "0.10";
src = fetchurl {
url = "https://alpha.gnu.org/gnu/ssw/spread-sheet-widget-${version}.tar.gz";
sha256 = "sha256-gGkuw1AnGZXhR9x1mSnN1507ZF5rXvqmtX9NLQXoR+U=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk3 ];
meta = with lib; {
homepage = "https://www.gnu.org/software/ssw/";
license = licenses.gpl3;
description = "GNU Spread Sheet Widget";
platforms = platforms.linux;
};
}