mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1203742766
GNU spread-sheet widget. Needed for pspp-1.2.0.
22 lines
538 B
Nix
22 lines
538 B
Nix
{ stdenv, fetchurl, pkg-config, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ssw";
|
|
version = "0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://alpha.gnu.org/gnu/ssw/spread-sheet-widget-${version}.tar.gz";
|
|
sha256 = "1h93yyh2by6yrmkwqg38nd5knids05k5nqzcihc1hdwgzg3c4b8y";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|