nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 21 lines 536 B view raw
1{ lib, stdenv, fetchurl, pkg-config, gtk3 }: 2 3stdenv.mkDerivation rec { 4 pname = "ssw"; 5 version = "0.6"; 6 7 src = fetchurl { 8 url = "https://alpha.gnu.org/gnu/ssw/spread-sheet-widget-${version}.tar.gz"; 9 sha256 = "08ck9l697xg8vpya5h07raq837i4pqxjqzx30vhscq4xpps2b8kj"; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 buildInputs = [ gtk3 ]; 14 15 meta = with lib; { 16 homepage = "https://www.gnu.org/software/ssw/"; 17 license = licenses.gpl3; 18 description = "GNU Spread Sheet Widget"; 19 platforms = platforms.linux; 20 }; 21}