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: 885fc3a8d70e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d0d6da14b154
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 1, 2019

  1. stenc: init at 1.0.7

    woffs authored and Lassulus committed Oct 1, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    wyattjoh Wyatt Johnson
    Copy the full SHA
    d0d6da1 View commit details
Showing with 23 additions and 0 deletions.
  1. +21 −0 pkgs/tools/backup/stenc/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
21 changes: 21 additions & 0 deletions pkgs/tools/backup/stenc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
version = "1.0.7";
pname = "stenc";

src = fetchFromGitHub {
owner = "scsitape";
repo = "stenc";
rev = "${version}";
sha256 = "1778m1zcyzyf42k5m496yqh0gv6kqhb0sq5983dhky1fccjl905k";
};

meta = {
description = "SCSI Tape Encryption Manager";
homepage = https://github.com/scsitape/stenc;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ woffs ];
platforms = stdenv.lib.platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -6230,6 +6230,8 @@ in

stdman = callPackage ../data/documentation/stdman { };

stenc = callPackage ../tools/backup/stenc { };

stm32loader = with python3Packages; toPythonApplication stm32loader;

storebrowse = callPackage ../tools/system/storebrowse { };