Merge branch 'master' into staging
Conflicts: pkgs/games/scummvm/default.nix
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
name = "borgbackup-${version}";
|
||||
version = "1.0.6";
|
||||
version = "1.0.7";
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/borgbackup/borg/releases/download/"
|
||||
+ "${version}/${name}.tar.gz";
|
||||
sha256 = "1dxn9p4xm0zd32xzzd9hs4a542db34clykrrnnv3hrdnc394895p";
|
||||
sha256 = "1l9iw55w5x51yxl3q89cf6avg80lajxvc8qz584hrsmnk6i56cr0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
|
||||
29
pkgs/tools/misc/blink1-tool/default.nix
Normal file
29
pkgs/tools/misc/blink1-tool/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, libusb1, pkgconfig, ... }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "blink1-${version}";
|
||||
version = "v1.98";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/todbot/blink1/archive/${version}.tar.gz";
|
||||
sha256 = "05hbnp20cdvyyqf6jr01waz1ycis20qzsd8hn27snmn6qd48igrb";
|
||||
};
|
||||
|
||||
buildInputs = [ libusb1 pkgconfig ];
|
||||
|
||||
configurePhase = ''
|
||||
cd commandline
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
PREFIX=$out make install
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Command line client for the blink(1) notification light";
|
||||
homepage = https://blink1.thingm.com/;
|
||||
license = stdenv.lib.licenses.cc-by-sa-30;
|
||||
maintainers = [ stdenv.lib.maintainers.cransom ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
@@ -15,12 +15,12 @@ assert !cpp || mpi == null;
|
||||
with { inherit (stdenv.lib) optional optionals; };
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.8.16";
|
||||
version = "1.10.0-patch1";
|
||||
name = "hdf5-${version}";
|
||||
src = fetchurl {
|
||||
url = "http://www.hdfgroup.org/ftp/HDF5/releases/${name}/src/${name}.tar.bz2";
|
||||
sha256 = "1ilq8pn9lxbf2wj2rdzwqabxismznjj1d23iw6g78w0bl5dsxahk";
|
||||
};
|
||||
url = "http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/${name}/src/${name}.tar.bz2";
|
||||
sha256 = "1fnzdw0ay5mm9v2vjxfhpjkwrkf9ccfah62lhlcfpp2kv16jcwpp";
|
||||
};
|
||||
|
||||
passthru = {
|
||||
mpiSupport = (mpi != null);
|
||||
|
||||
Reference in New Issue
Block a user