Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 79adc84f5e98
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 027b3b478eb2
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Dec 28, 2020

  1. maintainers: add vel

    q60 committed Dec 28, 2020
    Copy the full SHA
    dc0a708 View commit details
  2. disfetch: init at 1.12

    q60 committed Dec 28, 2020
    Copy the full SHA
    969356d View commit details

Commits on Jan 1, 2021

  1. Copy the full SHA
    027b3b4 View commit details
Showing with 37 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +29 −0 pkgs/tools/misc/disfetch/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -9420,6 +9420,12 @@
fingerprint = "4D23 ECDF 880D CADF 5ECA 4458 874B D6F9 16FA A742";
}];
};
vel = {
email = "llathasa@outlook.com";
github = "llathasa-veleth";
githubId = 61933599;
name = "vel";
};
velovix = {
email = "xaviosx@gmail.com";
github = "velovix";
29 changes: 29 additions & 0 deletions pkgs/tools/misc/disfetch/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ stdenv
, lib
, fetchFromGitHub }:

stdenv.mkDerivation rec {
pname = "disfetch";
version = "1.12";

src = fetchFromGitHub {
owner = "llathasa-veleth";
repo = "disfetch";
rev = version;
sha256 = "1zm8q0fx695x28zg8ihzk3w41439v47n68cw6k551x31mls939yn";
};

dontBuild = true;

installPhase = ''
install -Dm755 -t $out/bin disfetch
'';

meta = with lib; {
description = "Yet another *nix distro fetching program, but less complex";
homepage = "https://github.com/llathasa-veleth/disfetch";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.vel ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2008,6 +2008,8 @@ in

discocss = callPackage ../tools/misc/discocss { };

disfetch = callPackage ../tools/misc/disfetch { };

disk-filltest = callPackage ../tools/system/disk-filltest { };

diskscan = callPackage ../tools/misc/diskscan { };