merge
This commit is contained in:
commit
105b0813c1
4 changed files with 6 additions and 31 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -25,6 +25,7 @@
|
||||||
/go/trains/*/lukegb-trains.json
|
/go/trains/*/lukegb-trains.json
|
||||||
/py/icalfilter/config/*
|
/py/icalfilter/config/*
|
||||||
/rust/*/target/*
|
/rust/*/target/*
|
||||||
|
result
|
||||||
result-*
|
result-*
|
||||||
result
|
result
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
plex-pass = import ./plex-pass.nix args;
|
plex-pass = import ./plex-pass.nix args;
|
||||||
secretsync = import ./secretsync args;
|
secretsync = import ./secretsync args;
|
||||||
copybara = pkgs.callPackage ./copybara.nix { };
|
copybara = pkgs.callPackage ./copybara.nix { };
|
||||||
hg-git = import ./hg-git.nix args;
|
|
||||||
erbium = import ./erbium args;
|
erbium = import ./erbium args;
|
||||||
sheepshaver = import ./sheepshaver.nix args;
|
sheepshaver = import ./sheepshaver.nix args;
|
||||||
intermec-cups-driver = pkgs.callPackage ./intermec-cups-driver.nix {};
|
intermec-cups-driver = pkgs.callPackage ./intermec-cups-driver.nix {};
|
||||||
|
@ -26,7 +25,8 @@
|
||||||
lukegb-wallpapers = pkgs.callPackage ./lukegb-wallpapers {};
|
lukegb-wallpapers = pkgs.callPackage ./lukegb-wallpapers {};
|
||||||
rundeck-bin = pkgs.callPackage ./rundeck-bin {};
|
rundeck-bin = pkgs.callPackage ./rundeck-bin {};
|
||||||
mercurial = pkgs.mercurialFull.withExtensions (pm: with pm; [
|
mercurial = pkgs.mercurialFull.withExtensions (pm: with pm; [
|
||||||
hg-evolve
|
(hg-evolve.override { mercurial = pkgs.mercurialFull; })
|
||||||
|
(hg-git.override { mercurial = pkgs.mercurialFull; })
|
||||||
]);
|
]);
|
||||||
ubi_reader = pkgs.python3Packages.callPackage ./ubi_reader {};
|
ubi_reader = pkgs.python3Packages.callPackage ./ubi_reader {};
|
||||||
prometheus-bird-exporter-lfty = pkgs.callPackage ./prometheus-bird-exporter-lfty.nix {};
|
prometheus-bird-exporter-lfty = pkgs.callPackage ./prometheus-bird-exporter-lfty.nix {};
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
{ pkgs, ... }:
|
|
||||||
with pkgs;
|
|
||||||
with pkgs.python3Packages;
|
|
||||||
(buildPythonPackage rec {
|
|
||||||
pname = "hg-git";
|
|
||||||
version = "0.9.0a1";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "1lhb813zljki3q10bx3n9d7c075s6ahhak5d3a1m6gaxmy6gzj5y";
|
|
||||||
};
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ dulwich ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Push and pull from a Git server using Mercurial";
|
|
||||||
homepage = "http://hg-git.github.com/";
|
|
||||||
license = licenses.gpl2;
|
|
||||||
};
|
|
||||||
})
|
|
|
@ -5,11 +5,11 @@
|
||||||
|
|
||||||
appimageTools.wrapType2 rec {
|
appimageTools.wrapType2 rec {
|
||||||
pname = "worldofgoo2";
|
pname = "worldofgoo2";
|
||||||
version = "12329.171";
|
version = "1.0.12478.15";
|
||||||
|
|
||||||
src = requireFile {
|
src = requireFile {
|
||||||
name = "World_of_Goo_2-x86_64.${version}.appimage";
|
name = "World_of_Goo_2-x86_64-${version}.appimage";
|
||||||
hash = "sha256-/dOder333lqgKi+dQCIzeVtPObRYsn5LSYldXFXaK8o=";
|
hash = "sha256-esFcDFxeCDdl1BVEYdTeHxgkLo0j9HMYmEnPK0fIEhA=";
|
||||||
message = "Please download World of Goo 2 from the Humble Store and add it to the store.";
|
message = "Please download World of Goo 2 from the Humble Store and add it to the store.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue