mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-05 20:50:15 +00:00
remove inputs
This commit is contained in:
44
pkgs/applications/misc/volnoti/package.nix
Normal file
44
pkgs/applications/misc/volnoti/package.nix
Normal file
@ -0,0 +1,44 @@
|
||||
# Fix: Volnoti error: 'volnoti' has been removed due to lack of maintenance upstream.
|
||||
|
||||
{ pkgs, lib, ... }:
|
||||
pkgs.stdenv.mkDerivation {
|
||||
pname = "volnoti-unstable";
|
||||
version = "2013-09-23";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "davidbrazdil";
|
||||
repo = "volnoti";
|
||||
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
||||
sha256 = "155lb7w563dkdkdn4752hl0zjhgnq3j4cvs9z98nb25k1xpmpki7";
|
||||
};
|
||||
patches = [
|
||||
# Fix dbus interface headers. See
|
||||
# https://github.com/davidbrazdil/volnoti/pull/10
|
||||
(pkgs.fetchpatch {
|
||||
url = "https://github.com/davidbrazdil/volnoti/commit/623ad8ea5c3ac8720d00a2ced4b6163aae38c119.patch";
|
||||
sha256 = "046zfdjmvhb7jrsgh04vfgi35sgy1zkrhd3bzdby3nvds1wslfam";
|
||||
})
|
||||
];
|
||||
nativeBuildInputs = with pkgs; [
|
||||
pkg-config
|
||||
autoreconfHook
|
||||
wrapGAppsHook3
|
||||
];
|
||||
buildInputs = with pkgs; [
|
||||
dbus
|
||||
gdk-pixbuf
|
||||
glib
|
||||
xorg.libX11
|
||||
gtk2
|
||||
dbus-glib
|
||||
librsvg
|
||||
];
|
||||
meta = with lib; {
|
||||
description = "Lightweight volume notification for Linux";
|
||||
homepage = "https://github.com/davidbrazdil/volnoti";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ ];
|
||||
# Broken by https://github.com/nix-community/home-manager/pull/5725/commits/98bf8de65dc1ed12c6443b18f6f24d36e9c438d6
|
||||
mainProgram = "volnoti";
|
||||
};
|
||||
}
|
21
pkgs/tools/misc/gh-collaborators/package.nix
Normal file
21
pkgs/tools/misc/gh-collaborators/package.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGoModule rec {
|
||||
pname = "gh-collaborators";
|
||||
version = "v3.0.0";
|
||||
src = {
|
||||
owner = "katiem0";
|
||||
repo = "gh-collaborators";
|
||||
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
||||
sha256 = pkgs.lib.fakeHash;
|
||||
};
|
||||
|
||||
vendorHash = "sha256-9qmvG2q9t1Zj8yhKFyA99IaJ90R/gRVdQVjdliVKLRE";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/katiem0/gh-collaborators/cmd.Version=${version}"
|
||||
# "-X main.Version=${version}"
|
||||
];
|
||||
}
|
21
pkgs/tools/misc/osc/package.nix
Normal file
21
pkgs/tools/misc/osc/package.nix
Normal file
@ -0,0 +1,21 @@
|
||||
# Clipboard over SSH
|
||||
|
||||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGoModule {
|
||||
pname = "osc";
|
||||
version = "v0.4.6";
|
||||
src = {
|
||||
owner = "theimpostor";
|
||||
repo = "osc";
|
||||
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
||||
sha256 = pkgs.lib.fakeHash;
|
||||
};
|
||||
|
||||
vendorHash = "sha256-POtQWIjPObsfa3YZ1dLZgedZFUcc4HeTWjU20AucoKc=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
}
|
12
pkgs/tools/text/ren/package.nix
Normal file
12
pkgs/tools/text/ren/package.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "ren-find";
|
||||
version = "0.0.7";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "robenkleene";
|
||||
repo = "ren-find";
|
||||
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
||||
sha256 = pkgs.lib.fakeHash;
|
||||
};
|
||||
cargoHash = "sha256-3bI3j2xvNHp4kyLEq/DZvRJBF2rn6pE4n8oXh67edDI=";
|
||||
}
|
12
pkgs/tools/text/rep/package.nix
Normal file
12
pkgs/tools/text/rep/package.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "rep-grep";
|
||||
version = "0.0.7";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "robenkleene";
|
||||
repo = "rep-grep";
|
||||
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
||||
sha256 = pkgs.lib.fakeHash;
|
||||
};
|
||||
cargoHash = "sha256-GEr3VvQ0VTKHUbW/GFEgwLpQWP2ZhS/4KYjDvfFLgxo=";
|
||||
}
|
Reference in New Issue
Block a user