mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
22 lines
538 B
Nix
22 lines
538 B
Nix
{ stdenv, fetchurl, pkg-config, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ssw";
|
|
version = "0.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://alpha.gnu.org/gnu/ssw/spread-sheet-widget-${version}.tar.gz";
|
|
sha256 = "08ck9l697xg8vpya5h07raq837i4pqxjqzx30vhscq4xpps2b8kj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ gtk3 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.gnu.org/software/ssw/";
|
|
license = licenses.gpl3;
|
|
description = "GNU Spread Sheet Widget";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|